All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.konfigthis.carbonai.client.model.Account Maven / Gradle / Ivy

Go to download

Connect external data to LLMs, no matter the source. This library was generated by https://konfigthis.com

There is a newer version: 0.1.51
Show newest version
/*
 * 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.Event;
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;

/**
 * Account
 */@javax.annotation.Generated(value = "Generated by https://konfigthis.com")
public class Account {
  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_NAME = "name";
  @SerializedName(SERIALIZED_NAME_NAME)
  private String name;

  public static final String SERIALIZED_NAME_INDUSTRY = "industry";
  @SerializedName(SERIALIZED_NAME_INDUSTRY)
  private String industry;

  public static final String SERIALIZED_NAME_WEBSITE = "website";
  @SerializedName(SERIALIZED_NAME_WEBSITE)
  private String website;

  public static final String SERIALIZED_NAME_NUMBER_OF_EMPLOYEES = "number_of_employees";
  @SerializedName(SERIALIZED_NAME_NUMBER_OF_EMPLOYEES)
  private Integer numberOfEmployees;

  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_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 Account() { } public Account 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 Account 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 Account 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 Account 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 Account industry(String industry) { this.industry = industry; return this; } /** * Get industry * @return industry **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public String getIndustry() { return industry; } public void setIndustry(String industry) { this.industry = industry; } public Account website(String website) { this.website = website; return this; } /** * Get website * @return website **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public String getWebsite() { return website; } public void setWebsite(String website) { this.website = website; } public Account numberOfEmployees(Integer numberOfEmployees) { this.numberOfEmployees = numberOfEmployees; return this; } /** * Get numberOfEmployees * @return numberOfEmployees **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public Integer getNumberOfEmployees() { return numberOfEmployees; } public void setNumberOfEmployees(Integer numberOfEmployees) { this.numberOfEmployees = numberOfEmployees; } public Account addresses(List
addresses) { this.addresses = addresses; return this; } public Account 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 Account phoneNumbers(List phoneNumbers) { this.phoneNumbers = phoneNumbers; return this; } public Account 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 Account 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 Account 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 Account 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 Account 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 Account tasks(List tasks) { this.tasks = tasks; return this; } public Account 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 Account events(List events) { this.events = events; return this; } public Account 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 Account 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 Account instance itself */ public Account 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; } Account account = (Account) o; return Objects.equals(this.description, account.description) && Objects.equals(this.id, account.id) && Objects.equals(this.owner, account.owner) && Objects.equals(this.name, account.name) && Objects.equals(this.industry, account.industry) && Objects.equals(this.website, account.website) && Objects.equals(this.numberOfEmployees, account.numberOfEmployees) && Objects.equals(this.addresses, account.addresses) && Objects.equals(this.phoneNumbers, account.phoneNumbers) && Objects.equals(this.lastActivityAt, account.lastActivityAt) && Objects.equals(this.createdAt, account.createdAt) && Objects.equals(this.updatedAt, account.updatedAt) && Objects.equals(this.isDeleted, account.isDeleted) && Objects.equals(this.tasks, account.tasks) && Objects.equals(this.events, account.events) && Objects.equals(this.remoteData, account.remoteData)&& Objects.equals(this.additionalProperties, account.additionalProperties); } @Override public int hashCode() { return Objects.hash(description, id, owner, name, industry, website, numberOfEmployees, addresses, phoneNumbers, lastActivityAt, createdAt, updatedAt, isDeleted, tasks, events, remoteData, additionalProperties); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Account {\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(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" industry: ").append(toIndentedString(industry)).append("\n"); sb.append(" website: ").append(toIndentedString(website)).append("\n"); sb.append(" numberOfEmployees: ").append(toIndentedString(numberOfEmployees)).append("\n"); sb.append(" addresses: ").append(toIndentedString(addresses)).append("\n"); sb.append(" phoneNumbers: ").append(toIndentedString(phoneNumbers)).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("description"); openapiFields.add("id"); openapiFields.add("owner"); openapiFields.add("name"); openapiFields.add("industry"); openapiFields.add("website"); openapiFields.add("number_of_employees"); openapiFields.add("addresses"); openapiFields.add("phone_numbers"); 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("description"); openapiRequiredFields.add("id"); openapiRequiredFields.add("owner"); openapiRequiredFields.add("name"); openapiRequiredFields.add("industry"); openapiRequiredFields.add("website"); openapiRequiredFields.add("number_of_employees"); openapiRequiredFields.add("addresses"); openapiRequiredFields.add("phone_numbers"); 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 Account */ public static void validateJsonObject(JsonObject jsonObj) throws IOException { if (jsonObj == null) { if (!Account.openapiRequiredFields.isEmpty()) { // has required fields but JSON object is null throw new IllegalArgumentException(String.format("The required field(s) %s in Account is not found in the empty JSON string", Account.openapiRequiredFields.toString())); } } // check to make sure all required properties/fields are present in the JSON string for (String requiredField : Account.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("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("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("industry").isJsonNull() && !jsonObj.get("industry").isJsonPrimitive()) { throw new IllegalArgumentException(String.format("Expected the field `industry` to be a primitive type in the JSON string but got `%s`", jsonObj.get("industry").toString())); } if (!jsonObj.get("website").isJsonNull() && !jsonObj.get("website").isJsonPrimitive()) { throw new IllegalArgumentException(String.format("Expected the field `website` to be a primitive type in the JSON string but got `%s`", jsonObj.get("website").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()); }; 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 (!Account.class.isAssignableFrom(type.getRawType())) { return null; // this class only serializes 'Account' and its subtypes } final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class); final TypeAdapter thisAdapter = gson.getDelegateAdapter(this, TypeToken.get(Account.class)); return (TypeAdapter) new TypeAdapter() { @Override public void write(JsonWriter out, Account 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 Account read(JsonReader in) throws IOException { JsonObject jsonObj = elementAdapter.read(in).getAsJsonObject(); validateJsonObject(jsonObj); // store additional fields in the deserialized instance Account 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 Account given an JSON string * * @param jsonString JSON string * @return An instance of Account * @throws IOException if the JSON string is invalid with respect to Account */ public static Account fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Account.class); } /** * Convert an instance of Account to an JSON string * * @return JSON string */ public String toJson() { return JSON.getGson().toJson(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy