com.svix.models.ListResponseApplicationStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svix Show documentation
Show all versions of svix Show documentation
Svix webhooks API client and webhook verification library
/*
* Svix API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.1.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.svix.models;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.svix.models.ApplicationStats;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.openapitools.jackson.nullable.JsonNullable;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonArray;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.svix.internal.JSON;
/**
* ListResponseApplicationStats
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-12T23:42:33.364995Z[Etc/UTC]", comments = "Generator version: 7.9.0")
public class ListResponseApplicationStats {
public static final String SERIALIZED_NAME_DATA = "data";
@SerializedName(SERIALIZED_NAME_DATA)
private List data = new ArrayList<>();
public static final String SERIALIZED_NAME_DONE = "done";
@SerializedName(SERIALIZED_NAME_DONE)
private Boolean done;
public static final String SERIALIZED_NAME_ITERATOR = "iterator";
@SerializedName(SERIALIZED_NAME_ITERATOR)
private String iterator;
public static final String SERIALIZED_NAME_PREV_ITERATOR = "prevIterator";
@SerializedName(SERIALIZED_NAME_PREV_ITERATOR)
private String prevIterator;
public ListResponseApplicationStats() {
}
public ListResponseApplicationStats data(List data) {
this.data = data;
return this;
}
public ListResponseApplicationStats addDataItem(ApplicationStats dataItem) {
if (this.data == null) {
this.data = new ArrayList<>();
}
this.data.add(dataItem);
return this;
}
/**
* Get data
* @return data
*/
@javax.annotation.Nonnull
public List getData() {
return data;
}
public void setData(List data) {
this.data = data;
}
public ListResponseApplicationStats done(Boolean done) {
this.done = done;
return this;
}
/**
* Get done
* @return done
*/
@javax.annotation.Nonnull
public Boolean getDone() {
return done;
}
public void setDone(Boolean done) {
this.done = done;
}
public ListResponseApplicationStats iterator(String iterator) {
this.iterator = iterator;
return this;
}
/**
* Get iterator
* @return iterator
*/
@javax.annotation.Nullable
public String getIterator() {
return iterator;
}
public void setIterator(String iterator) {
this.iterator = iterator;
}
public ListResponseApplicationStats prevIterator(String prevIterator) {
this.prevIterator = prevIterator;
return this;
}
/**
* Get prevIterator
* @return prevIterator
*/
@javax.annotation.Nullable
public String getPrevIterator() {
return prevIterator;
}
public void setPrevIterator(String prevIterator) {
this.prevIterator = prevIterator;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ListResponseApplicationStats listResponseApplicationStats = (ListResponseApplicationStats) o;
return Objects.equals(this.data, listResponseApplicationStats.data) &&
Objects.equals(this.done, listResponseApplicationStats.done) &&
Objects.equals(this.iterator, listResponseApplicationStats.iterator) &&
Objects.equals(this.prevIterator, listResponseApplicationStats.prevIterator);
}
private static boolean equalsNullable(JsonNullable a, JsonNullable b) {
return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get()));
}
@Override
public int hashCode() {
return Objects.hash(data, done, iterator, prevIterator);
}
private static int hashCodeNullable(JsonNullable a) {
if (a == null) {
return 1;
}
return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListResponseApplicationStats {\n");
sb.append(" data: ").append(toIndentedString(data)).append("\n");
sb.append(" done: ").append(toIndentedString(done)).append("\n");
sb.append(" iterator: ").append(toIndentedString(iterator)).append("\n");
sb.append(" prevIterator: ").append(toIndentedString(prevIterator)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
public static HashSet openapiFields;
public static HashSet openapiRequiredFields;
static {
// a set of all properties/fields (JSON key names)
openapiFields = new HashSet();
openapiFields.add("data");
openapiFields.add("done");
openapiFields.add("iterator");
openapiFields.add("prevIterator");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
openapiRequiredFields.add("data");
openapiRequiredFields.add("done");
openapiRequiredFields.add("iterator");
}
/**
* Validates the JSON Element and throws an exception if issues found
*
* @param jsonElement JSON Element
* @throws IOException if the JSON Element is invalid with respect to ListResponseApplicationStats
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!ListResponseApplicationStats.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in ListResponseApplicationStats is not found in the empty JSON string", ListResponseApplicationStats.openapiRequiredFields.toString()));
}
}
Set> entries = jsonElement.getAsJsonObject().entrySet();
// check to see if the JSON string contains additional fields
for (Map.Entry entry : entries) {
if (!ListResponseApplicationStats.openapiFields.contains(entry.getKey())) {
throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `ListResponseApplicationStats` properties. JSON: %s", entry.getKey(), jsonElement.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : ListResponseApplicationStats.openapiRequiredFields) {
if (jsonElement.getAsJsonObject().get(requiredField) == null) {
throw new IllegalArgumentException(String.format("The required field `%s` is not found in the JSON string: %s", requiredField, jsonElement.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
// ensure the json data is an array
if (!jsonObj.get("data").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `data` to be an array in the JSON string but got `%s`", jsonObj.get("data").toString()));
}
JsonArray jsonArraydata = jsonObj.getAsJsonArray("data");
// validate the required field `data` (array)
for (int i = 0; i < jsonArraydata.size(); i++) {
ApplicationStats.validateJsonElement(jsonArraydata.get(i));
};
if ((jsonObj.get("iterator") != null && !jsonObj.get("iterator").isJsonNull()) && !jsonObj.get("iterator").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `iterator` to be a primitive type in the JSON string but got `%s`", jsonObj.get("iterator").toString()));
}
if ((jsonObj.get("prevIterator") != null && !jsonObj.get("prevIterator").isJsonNull()) && !jsonObj.get("prevIterator").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `prevIterator` to be a primitive type in the JSON string but got `%s`", jsonObj.get("prevIterator").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!ListResponseApplicationStats.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'ListResponseApplicationStats' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(ListResponseApplicationStats.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, ListResponseApplicationStats value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public ListResponseApplicationStats read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of ListResponseApplicationStats given an JSON string
*
* @param jsonString JSON string
* @return An instance of ListResponseApplicationStats
* @throws IOException if the JSON string is invalid with respect to ListResponseApplicationStats
*/
public static ListResponseApplicationStats fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, ListResponseApplicationStats.class);
}
/**
* Convert an instance of ListResponseApplicationStats to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy