com.konfigthis.carbonai.client.model.Opportunity 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.Event;
import com.konfigthis.carbonai.client.model.OpportunityStatusNullable;
import com.konfigthis.carbonai.client.model.PartialAccountNullable;
import com.konfigthis.carbonai.client.model.PartialContactNullable;
import com.konfigthis.carbonai.client.model.PartialOwner;
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;
/**
* Opportunity
*/@javax.annotation.Generated(value = "Generated by https://konfigthis.com")
public class Opportunity {
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 PartialOwner owner;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private Integer amount;
public static final String SERIALIZED_NAME_ACCOUNT = "account";
@SerializedName(SERIALIZED_NAME_ACCOUNT)
private PartialAccountNullable account;
public static final String SERIALIZED_NAME_CONTACT = "contact";
@SerializedName(SERIALIZED_NAME_CONTACT)
private PartialContactNullable contact;
public static final String SERIALIZED_NAME_STAGE = "stage";
@SerializedName(SERIALIZED_NAME_STAGE)
private String stage;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private OpportunityStatusNullable status;
public static final String SERIALIZED_NAME_CLOSE_DATE = "close_date";
@SerializedName(SERIALIZED_NAME_CLOSE_DATE)
private String closeDate;
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 Opportunity() {
}
public Opportunity 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 Opportunity 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 Opportunity owner(PartialOwner owner) {
this.owner = owner;
return this;
}
/**
* Get owner
* @return owner
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
public PartialOwner getOwner() {
return owner;
}
public void setOwner(PartialOwner owner) {
this.owner = owner;
}
public Opportunity 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 Opportunity amount(Integer amount) {
this.amount = amount;
return this;
}
/**
* Get amount
* @return amount
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public Integer getAmount() {
return amount;
}
public void setAmount(Integer amount) {
this.amount = amount;
}
public Opportunity 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 Opportunity contact(PartialContactNullable contact) {
this.contact = contact;
return this;
}
/**
* Get contact
* @return contact
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public PartialContactNullable getContact() {
return contact;
}
public void setContact(PartialContactNullable contact) {
this.contact = contact;
}
public Opportunity stage(String stage) {
this.stage = stage;
return this;
}
/**
* Get stage
* @return stage
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public String getStage() {
return stage;
}
public void setStage(String stage) {
this.stage = stage;
}
public Opportunity status(OpportunityStatusNullable status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public OpportunityStatusNullable getStatus() {
return status;
}
public void setStatus(OpportunityStatusNullable status) {
this.status = status;
}
public Opportunity closeDate(String closeDate) {
this.closeDate = closeDate;
return this;
}
/**
* Get closeDate
* @return closeDate
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public String getCloseDate() {
return closeDate;
}
public void setCloseDate(String closeDate) {
this.closeDate = closeDate;
}
public Opportunity 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 Opportunity 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 Opportunity 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 Opportunity 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 Opportunity tasks(List tasks) {
this.tasks = tasks;
return this;
}
public Opportunity 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 Opportunity events(List events) {
this.events = events;
return this;
}
public Opportunity 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 Opportunity 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 Opportunity instance itself
*/
public Opportunity 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;
}
Opportunity opportunity = (Opportunity) o;
return Objects.equals(this.description, opportunity.description) &&
Objects.equals(this.id, opportunity.id) &&
Objects.equals(this.owner, opportunity.owner) &&
Objects.equals(this.name, opportunity.name) &&
Objects.equals(this.amount, opportunity.amount) &&
Objects.equals(this.account, opportunity.account) &&
Objects.equals(this.contact, opportunity.contact) &&
Objects.equals(this.stage, opportunity.stage) &&
Objects.equals(this.status, opportunity.status) &&
Objects.equals(this.closeDate, opportunity.closeDate) &&
Objects.equals(this.lastActivityAt, opportunity.lastActivityAt) &&
Objects.equals(this.createdAt, opportunity.createdAt) &&
Objects.equals(this.updatedAt, opportunity.updatedAt) &&
Objects.equals(this.isDeleted, opportunity.isDeleted) &&
Objects.equals(this.tasks, opportunity.tasks) &&
Objects.equals(this.events, opportunity.events) &&
Objects.equals(this.remoteData, opportunity.remoteData)&&
Objects.equals(this.additionalProperties, opportunity.additionalProperties);
}
@Override
public int hashCode() {
return Objects.hash(description, id, owner, name, amount, account, contact, stage, status, closeDate, lastActivityAt, createdAt, updatedAt, isDeleted, tasks, events, remoteData, additionalProperties);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Opportunity {\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(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" account: ").append(toIndentedString(account)).append("\n");
sb.append(" contact: ").append(toIndentedString(contact)).append("\n");
sb.append(" stage: ").append(toIndentedString(stage)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" closeDate: ").append(toIndentedString(closeDate)).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("amount");
openapiFields.add("account");
openapiFields.add("contact");
openapiFields.add("stage");
openapiFields.add("status");
openapiFields.add("close_date");
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("amount");
openapiRequiredFields.add("account");
openapiRequiredFields.add("contact");
openapiRequiredFields.add("stage");
openapiRequiredFields.add("status");
openapiRequiredFields.add("close_date");
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 Opportunity
*/
public static void validateJsonObject(JsonObject jsonObj) throws IOException {
if (jsonObj == null) {
if (!Opportunity.openapiRequiredFields.isEmpty()) { // has required fields but JSON object is null
throw new IllegalArgumentException(String.format("The required field(s) %s in Opportunity is not found in the empty JSON string", Opportunity.openapiRequiredFields.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : Opportunity.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`
PartialOwner.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()));
}
// validate the required field `account`
if (!jsonObj.get("account").isJsonNull()) {
PartialAccountNullable.validateJsonObject(jsonObj.getAsJsonObject("account"));
}
// validate the required field `contact`
if (!jsonObj.get("contact").isJsonNull()) {
PartialContactNullable.validateJsonObject(jsonObj.getAsJsonObject("contact"));
}
if (!jsonObj.get("stage").isJsonNull() && !jsonObj.get("stage").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `stage` to be a primitive type in the JSON string but got `%s`", jsonObj.get("stage").toString()));
}
if (!jsonObj.get("close_date").isJsonNull() && !jsonObj.get("close_date").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `close_date` to be a primitive type in the JSON string but got `%s`", jsonObj.get("close_date").toString()));
}
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 (!Opportunity.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'Opportunity' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(Opportunity.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, Opportunity 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 Opportunity read(JsonReader in) throws IOException {
JsonObject jsonObj = elementAdapter.read(in).getAsJsonObject();
validateJsonObject(jsonObj);
// store additional fields in the deserialized instance
Opportunity 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 Opportunity given an JSON string
*
* @param jsonString JSON string
* @return An instance of Opportunity
* @throws IOException if the JSON string is invalid with respect to Opportunity
*/
public static Opportunity fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, Opportunity.class);
}
/**
* Convert an instance of Opportunity to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}