com.konfigthis.carbonai.client.model.Contact Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of carbonai-java-sdk Show documentation
Show all versions of carbonai-java-sdk Show documentation
Connect external data to LLMs, no matter the source.
This library was generated by https://konfigthis.com
/*
* Carbon
* Connect external data to LLMs, no matter the source.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by Konfig (https://konfigthis.com).
* Do not edit the class manually.
*/
package com.konfigthis.carbonai.client.model;
import java.util.Objects;
import java.util.Arrays;
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.konfigthis.carbonai.client.model.Address;
import com.konfigthis.carbonai.client.model.Email;
import com.konfigthis.carbonai.client.model.Event;
import com.konfigthis.carbonai.client.model.PartialAccountNullable;
import com.konfigthis.carbonai.client.model.PartialOwnerNullable;
import com.konfigthis.carbonai.client.model.PhoneNumber;
import com.konfigthis.carbonai.client.model.Task;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
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 org.apache.commons.lang3.StringUtils;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import com.konfigthis.carbonai.client.JSON;
/**
* Contact
*/@javax.annotation.Generated(value = "Generated by https://konfigthis.com")
public class Contact {
public static final String SERIALIZED_NAME_TITLE = "title";
@SerializedName(SERIALIZED_NAME_TITLE)
private String title;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private String id;
public static final String SERIALIZED_NAME_OWNER = "owner";
@SerializedName(SERIALIZED_NAME_OWNER)
private PartialOwnerNullable owner;
public static final String SERIALIZED_NAME_FIRST_NAME = "first_name";
@SerializedName(SERIALIZED_NAME_FIRST_NAME)
private String firstName;
public static final String SERIALIZED_NAME_LAST_NAME = "last_name";
@SerializedName(SERIALIZED_NAME_LAST_NAME)
private String lastName;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_DEPARTMENT = "department";
@SerializedName(SERIALIZED_NAME_DEPARTMENT)
private String department;
public static final String SERIALIZED_NAME_ADDRESSES = "addresses";
@SerializedName(SERIALIZED_NAME_ADDRESSES)
private List addresses = new ArrayList<>();
public static final String SERIALIZED_NAME_PHONE_NUMBERS = "phone_numbers";
@SerializedName(SERIALIZED_NAME_PHONE_NUMBERS)
private List phoneNumbers = new ArrayList<>();
public static final String SERIALIZED_NAME_EMAILS = "emails";
@SerializedName(SERIALIZED_NAME_EMAILS)
private List emails = new ArrayList<>();
public static final String SERIALIZED_NAME_ACCOUNT = "account";
@SerializedName(SERIALIZED_NAME_ACCOUNT)
private PartialAccountNullable account;
public static final String SERIALIZED_NAME_LAST_ACTIVITY_AT = "last_activity_at";
@SerializedName(SERIALIZED_NAME_LAST_ACTIVITY_AT)
private String lastActivityAt;
public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
private String createdAt;
public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at";
@SerializedName(SERIALIZED_NAME_UPDATED_AT)
private String updatedAt;
public static final String SERIALIZED_NAME_IS_DELETED = "is_deleted";
@SerializedName(SERIALIZED_NAME_IS_DELETED)
private Boolean isDeleted;
public static final String SERIALIZED_NAME_TASKS = "tasks";
@SerializedName(SERIALIZED_NAME_TASKS)
private List tasks = new ArrayList<>();
public static final String SERIALIZED_NAME_EVENTS = "events";
@SerializedName(SERIALIZED_NAME_EVENTS)
private List events = new ArrayList<>();
public static final String SERIALIZED_NAME_REMOTE_DATA = "remote_data";
@SerializedName(SERIALIZED_NAME_REMOTE_DATA)
private Object remoteData;
public Contact() {
}
public Contact title(String title) {
this.title = title;
return this;
}
/**
* Get title
* @return title
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Contact description(String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Contact id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Contact owner(PartialOwnerNullable owner) {
this.owner = owner;
return this;
}
/**
* Get owner
* @return owner
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public PartialOwnerNullable getOwner() {
return owner;
}
public void setOwner(PartialOwnerNullable owner) {
this.owner = owner;
}
public Contact firstName(String firstName) {
this.firstName = firstName;
return this;
}
/**
* Get firstName
* @return firstName
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public Contact lastName(String lastName) {
this.lastName = lastName;
return this;
}
/**
* Get lastName
* @return lastName
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public Contact name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Contact department(String department) {
this.department = department;
return this;
}
/**
* Get department
* @return department
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public String getDepartment() {
return department;
}
public void setDepartment(String department) {
this.department = department;
}
public Contact addresses(List addresses) {
this.addresses = addresses;
return this;
}
public Contact addAddressesItem(Address addressesItem) {
this.addresses.add(addressesItem);
return this;
}
/**
* Get addresses
* @return addresses
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
public List getAddresses() {
return addresses;
}
public void setAddresses(List addresses) {
this.addresses = addresses;
}
public Contact phoneNumbers(List phoneNumbers) {
this.phoneNumbers = phoneNumbers;
return this;
}
public Contact addPhoneNumbersItem(PhoneNumber phoneNumbersItem) {
this.phoneNumbers.add(phoneNumbersItem);
return this;
}
/**
* Get phoneNumbers
* @return phoneNumbers
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
public List getPhoneNumbers() {
return phoneNumbers;
}
public void setPhoneNumbers(List phoneNumbers) {
this.phoneNumbers = phoneNumbers;
}
public Contact emails(List emails) {
this.emails = emails;
return this;
}
public Contact addEmailsItem(Email emailsItem) {
this.emails.add(emailsItem);
return this;
}
/**
* Get emails
* @return emails
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
public List getEmails() {
return emails;
}
public void setEmails(List emails) {
this.emails = emails;
}
public Contact account(PartialAccountNullable account) {
this.account = account;
return this;
}
/**
* Get account
* @return account
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public PartialAccountNullable getAccount() {
return account;
}
public void setAccount(PartialAccountNullable account) {
this.account = account;
}
public Contact lastActivityAt(String lastActivityAt) {
this.lastActivityAt = lastActivityAt;
return this;
}
/**
* Get lastActivityAt
* @return lastActivityAt
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public String getLastActivityAt() {
return lastActivityAt;
}
public void setLastActivityAt(String lastActivityAt) {
this.lastActivityAt = lastActivityAt;
}
public Contact createdAt(String createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Get createdAt
* @return createdAt
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
public String getCreatedAt() {
return createdAt;
}
public void setCreatedAt(String createdAt) {
this.createdAt = createdAt;
}
public Contact updatedAt(String updatedAt) {
this.updatedAt = updatedAt;
return this;
}
/**
* Get updatedAt
* @return updatedAt
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
public String getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(String updatedAt) {
this.updatedAt = updatedAt;
}
public Contact isDeleted(Boolean isDeleted) {
this.isDeleted = isDeleted;
return this;
}
/**
* Get isDeleted
* @return isDeleted
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
public Boolean getIsDeleted() {
return isDeleted;
}
public void setIsDeleted(Boolean isDeleted) {
this.isDeleted = isDeleted;
}
public Contact tasks(List tasks) {
this.tasks = tasks;
return this;
}
public Contact addTasksItem(Task tasksItem) {
this.tasks.add(tasksItem);
return this;
}
/**
* Get tasks
* @return tasks
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public List getTasks() {
return tasks;
}
public void setTasks(List tasks) {
this.tasks = tasks;
}
public Contact events(List events) {
this.events = events;
return this;
}
public Contact addEventsItem(Event eventsItem) {
this.events.add(eventsItem);
return this;
}
/**
* Get events
* @return events
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public List getEvents() {
return events;
}
public void setEvents(List events) {
this.events = events;
}
public Contact remoteData(Object remoteData) {
this.remoteData = remoteData;
return this;
}
/**
* Get remoteData
* @return remoteData
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public Object getRemoteData() {
return remoteData;
}
public void setRemoteData(Object remoteData) {
this.remoteData = remoteData;
}
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
private Map additionalProperties;
/**
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
*
* @param key name of the property
* @param value value of the property
* @return the Contact instance itself
*/
public Contact putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap();
}
this.additionalProperties.put(key, value);
return this;
}
/**
* Return the additional (undeclared) property.
*
* @return a map of objects
*/
public Map getAdditionalProperties() {
return additionalProperties;
}
/**
* Return the additional (undeclared) property with the specified name.
*
* @param key name of the property
* @return an object
*/
public Object getAdditionalProperty(String key) {
if (this.additionalProperties == null) {
return null;
}
return this.additionalProperties.get(key);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Contact contact = (Contact) o;
return Objects.equals(this.title, contact.title) &&
Objects.equals(this.description, contact.description) &&
Objects.equals(this.id, contact.id) &&
Objects.equals(this.owner, contact.owner) &&
Objects.equals(this.firstName, contact.firstName) &&
Objects.equals(this.lastName, contact.lastName) &&
Objects.equals(this.name, contact.name) &&
Objects.equals(this.department, contact.department) &&
Objects.equals(this.addresses, contact.addresses) &&
Objects.equals(this.phoneNumbers, contact.phoneNumbers) &&
Objects.equals(this.emails, contact.emails) &&
Objects.equals(this.account, contact.account) &&
Objects.equals(this.lastActivityAt, contact.lastActivityAt) &&
Objects.equals(this.createdAt, contact.createdAt) &&
Objects.equals(this.updatedAt, contact.updatedAt) &&
Objects.equals(this.isDeleted, contact.isDeleted) &&
Objects.equals(this.tasks, contact.tasks) &&
Objects.equals(this.events, contact.events) &&
Objects.equals(this.remoteData, contact.remoteData)&&
Objects.equals(this.additionalProperties, contact.additionalProperties);
}
@Override
public int hashCode() {
return Objects.hash(title, description, id, owner, firstName, lastName, name, department, addresses, phoneNumbers, emails, account, lastActivityAt, createdAt, updatedAt, isDeleted, tasks, events, remoteData, additionalProperties);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Contact {\n");
sb.append(" title: ").append(toIndentedString(title)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" owner: ").append(toIndentedString(owner)).append("\n");
sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n");
sb.append(" lastName: ").append(toIndentedString(lastName)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" department: ").append(toIndentedString(department)).append("\n");
sb.append(" addresses: ").append(toIndentedString(addresses)).append("\n");
sb.append(" phoneNumbers: ").append(toIndentedString(phoneNumbers)).append("\n");
sb.append(" emails: ").append(toIndentedString(emails)).append("\n");
sb.append(" account: ").append(toIndentedString(account)).append("\n");
sb.append(" lastActivityAt: ").append(toIndentedString(lastActivityAt)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
sb.append(" isDeleted: ").append(toIndentedString(isDeleted)).append("\n");
sb.append(" tasks: ").append(toIndentedString(tasks)).append("\n");
sb.append(" events: ").append(toIndentedString(events)).append("\n");
sb.append(" remoteData: ").append(toIndentedString(remoteData)).append("\n");
sb.append(" additionalProperties: ").append(toIndentedString(additionalProperties)).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("title");
openapiFields.add("description");
openapiFields.add("id");
openapiFields.add("owner");
openapiFields.add("first_name");
openapiFields.add("last_name");
openapiFields.add("name");
openapiFields.add("department");
openapiFields.add("addresses");
openapiFields.add("phone_numbers");
openapiFields.add("emails");
openapiFields.add("account");
openapiFields.add("last_activity_at");
openapiFields.add("created_at");
openapiFields.add("updated_at");
openapiFields.add("is_deleted");
openapiFields.add("tasks");
openapiFields.add("events");
openapiFields.add("remote_data");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
openapiRequiredFields.add("title");
openapiRequiredFields.add("description");
openapiRequiredFields.add("id");
openapiRequiredFields.add("owner");
openapiRequiredFields.add("first_name");
openapiRequiredFields.add("last_name");
openapiRequiredFields.add("name");
openapiRequiredFields.add("department");
openapiRequiredFields.add("addresses");
openapiRequiredFields.add("phone_numbers");
openapiRequiredFields.add("emails");
openapiRequiredFields.add("account");
openapiRequiredFields.add("last_activity_at");
openapiRequiredFields.add("created_at");
openapiRequiredFields.add("updated_at");
openapiRequiredFields.add("is_deleted");
openapiRequiredFields.add("tasks");
openapiRequiredFields.add("events");
openapiRequiredFields.add("remote_data");
}
/**
* Validates the JSON Object and throws an exception if issues found
*
* @param jsonObj JSON Object
* @throws IOException if the JSON Object is invalid with respect to Contact
*/
public static void validateJsonObject(JsonObject jsonObj) throws IOException {
if (jsonObj == null) {
if (!Contact.openapiRequiredFields.isEmpty()) { // has required fields but JSON object is null
throw new IllegalArgumentException(String.format("The required field(s) %s in Contact is not found in the empty JSON string", Contact.openapiRequiredFields.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : Contact.openapiRequiredFields) {
if (jsonObj.get(requiredField) == null) {
throw new IllegalArgumentException(String.format("The required field `%s` is not found in the JSON string: %s", requiredField, jsonObj.toString()));
}
}
if (!jsonObj.get("title").isJsonNull() && !jsonObj.get("title").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `title` to be a primitive type in the JSON string but got `%s`", jsonObj.get("title").toString()));
}
if (!jsonObj.get("description").isJsonNull() && !jsonObj.get("description").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `description` to be a primitive type in the JSON string but got `%s`", jsonObj.get("description").toString()));
}
if (!jsonObj.get("id").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("id").toString()));
}
// validate the required field `owner`
if (!jsonObj.get("owner").isJsonNull()) {
PartialOwnerNullable.validateJsonObject(jsonObj.getAsJsonObject("owner"));
}
if (!jsonObj.get("first_name").isJsonNull() && !jsonObj.get("first_name").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `first_name` to be a primitive type in the JSON string but got `%s`", jsonObj.get("first_name").toString()));
}
if (!jsonObj.get("last_name").isJsonNull() && !jsonObj.get("last_name").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `last_name` to be a primitive type in the JSON string but got `%s`", jsonObj.get("last_name").toString()));
}
if (!jsonObj.get("name").isJsonNull() && !jsonObj.get("name").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `name` to be a primitive type in the JSON string but got `%s`", jsonObj.get("name").toString()));
}
if (!jsonObj.get("department").isJsonNull() && !jsonObj.get("department").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `department` to be a primitive type in the JSON string but got `%s`", jsonObj.get("department").toString()));
}
// ensure the json data is an array
if (!jsonObj.get("addresses").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `addresses` to be an array in the JSON string but got `%s`", jsonObj.get("addresses").toString()));
}
JsonArray jsonArrayaddresses = jsonObj.getAsJsonArray("addresses");
// validate the required field `addresses` (array)
for (int i = 0; i < jsonArrayaddresses.size(); i++) {
Address.validateJsonObject(jsonArrayaddresses.get(i).getAsJsonObject());
};
// ensure the json data is an array
if (!jsonObj.get("phone_numbers").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `phone_numbers` to be an array in the JSON string but got `%s`", jsonObj.get("phone_numbers").toString()));
}
JsonArray jsonArrayphoneNumbers = jsonObj.getAsJsonArray("phone_numbers");
// validate the required field `phone_numbers` (array)
for (int i = 0; i < jsonArrayphoneNumbers.size(); i++) {
PhoneNumber.validateJsonObject(jsonArrayphoneNumbers.get(i).getAsJsonObject());
};
// ensure the json data is an array
if (!jsonObj.get("emails").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `emails` to be an array in the JSON string but got `%s`", jsonObj.get("emails").toString()));
}
JsonArray jsonArrayemails = jsonObj.getAsJsonArray("emails");
// validate the required field `emails` (array)
for (int i = 0; i < jsonArrayemails.size(); i++) {
Email.validateJsonObject(jsonArrayemails.get(i).getAsJsonObject());
};
// validate the required field `account`
if (!jsonObj.get("account").isJsonNull()) {
PartialAccountNullable.validateJsonObject(jsonObj.getAsJsonObject("account"));
}
if (!jsonObj.get("last_activity_at").isJsonNull() && !jsonObj.get("last_activity_at").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `last_activity_at` to be a primitive type in the JSON string but got `%s`", jsonObj.get("last_activity_at").toString()));
}
if (!jsonObj.get("created_at").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `created_at` to be a primitive type in the JSON string but got `%s`", jsonObj.get("created_at").toString()));
}
if (!jsonObj.get("updated_at").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `updated_at` to be a primitive type in the JSON string but got `%s`", jsonObj.get("updated_at").toString()));
}
// ensure the json data is an array
if (!jsonObj.get("tasks").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `tasks` to be an array in the JSON string but got `%s`", jsonObj.get("tasks").toString()));
}
JsonArray jsonArraytasks = jsonObj.getAsJsonArray("tasks");
// validate the required field `tasks` (array)
for (int i = 0; i < jsonArraytasks.size(); i++) {
Task.validateJsonObject(jsonArraytasks.get(i).getAsJsonObject());
};
// ensure the json data is an array
if (!jsonObj.get("events").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `events` to be an array in the JSON string but got `%s`", jsonObj.get("events").toString()));
}
JsonArray jsonArrayevents = jsonObj.getAsJsonArray("events");
// validate the required field `events` (array)
for (int i = 0; i < jsonArrayevents.size(); i++) {
Event.validateJsonObject(jsonArrayevents.get(i).getAsJsonObject());
};
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!Contact.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'Contact' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(Contact.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, Contact value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
// serialize additonal properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
obj.addProperty(entry.getKey(), (String) entry.getValue());
else if (entry.getValue() instanceof Number)
obj.addProperty(entry.getKey(), (Number) entry.getValue());
else if (entry.getValue() instanceof Boolean)
obj.addProperty(entry.getKey(), (Boolean) entry.getValue());
else if (entry.getValue() instanceof Character)
obj.addProperty(entry.getKey(), (Character) entry.getValue());
else if (entry.getValue() == null) {
obj.addProperty(entry.getKey(), (String) null);
} else {
obj.add(entry.getKey(), gson.toJsonTree(entry.getValue()).getAsJsonObject());
}
}
}
elementAdapter.write(out, obj);
}
@Override
public Contact read(JsonReader in) throws IOException {
JsonObject jsonObj = elementAdapter.read(in).getAsJsonObject();
validateJsonObject(jsonObj);
// store additional fields in the deserialized instance
Contact instance = thisAdapter.fromJsonTree(jsonObj);
for (Map.Entry entry : jsonObj.entrySet()) {
if (!openapiFields.contains(entry.getKey())) {
if (entry.getValue().isJsonPrimitive()) { // primitive type
if (entry.getValue().getAsJsonPrimitive().isString())
instance.putAdditionalProperty(entry.getKey(), entry.getValue().getAsString());
else if (entry.getValue().getAsJsonPrimitive().isNumber())
instance.putAdditionalProperty(entry.getKey(), entry.getValue().getAsNumber());
else if (entry.getValue().getAsJsonPrimitive().isBoolean())
instance.putAdditionalProperty(entry.getKey(), entry.getValue().getAsBoolean());
else
throw new IllegalArgumentException(String.format("The field `%s` has unknown primitive type. Value: %s", entry.getKey(), entry.getValue().toString()));
} else if (entry.getValue().isJsonArray()) {
instance.putAdditionalProperty(entry.getKey(), gson.fromJson(entry.getValue(), List.class));
} else { // JSON object
instance.putAdditionalProperty(entry.getKey(), gson.fromJson(entry.getValue(), HashMap.class));
}
}
}
return instance;
}
}.nullSafe();
}
}
/**
* Create an instance of Contact given an JSON string
*
* @param jsonString JSON string
* @return An instance of Contact
* @throws IOException if the JSON string is invalid with respect to Contact
*/
public static Contact fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, Contact.class);
}
/**
* Convert an instance of Contact to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}