com.konfigthis.client.model.BrokerageAuthorization Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snaptrade-java-sdk Show documentation
Show all versions of snaptrade-java-sdk Show documentation
Connect brokerage accounts to your app for live positions and trading
This library was generated by https://konfigthis.com
/*
* SnapTrade
* Connect brokerage accounts to your app for live positions and trading
*
* The version of the OpenAPI document: 1.0.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by Konfig (https://konfigthis.com).
* Do not edit the class manually.
*/
package com.konfigthis.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.client.model.Brokerage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
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 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.client.JSON;
/**
* BrokerageAuthorization
*/@javax.annotation.Generated(value = "Generated by https://konfigthis.com")
public class BrokerageAuthorization {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private UUID id;
public static final String SERIALIZED_NAME_CREATED_DATE = "created_date";
@SerializedName(SERIALIZED_NAME_CREATED_DATE)
private String createdDate;
public static final String SERIALIZED_NAME_UPDATED_DATE = "updated_date";
@SerializedName(SERIALIZED_NAME_UPDATED_DATE)
private String updatedDate;
public static final String SERIALIZED_NAME_BROKERAGE = "brokerage";
@SerializedName(SERIALIZED_NAME_BROKERAGE)
private Brokerage brokerage;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private String type;
public static final String SERIALIZED_NAME_DISABLED = "disabled";
@SerializedName(SERIALIZED_NAME_DISABLED)
private Boolean disabled;
public static final String SERIALIZED_NAME_DISABLED_DATE = "disabled_date";
@SerializedName(SERIALIZED_NAME_DISABLED_DATE)
private String disabledDate;
public static final String SERIALIZED_NAME_META = "meta";
@SerializedName(SERIALIZED_NAME_META)
private Map meta = null;
public BrokerageAuthorization() {
}
public BrokerageAuthorization id(UUID id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2bcd7cc3-e922-4976-bce1-9858296801c3", value = "")
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public BrokerageAuthorization createdDate(String createdDate) {
this.createdDate = createdDate;
return this;
}
/**
* Time
* @return createdDate
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2022-01-21T20:11:19.217Z", value = "Time")
public String getCreatedDate() {
return createdDate;
}
public void setCreatedDate(String createdDate) {
this.createdDate = createdDate;
}
public BrokerageAuthorization updatedDate(String updatedDate) {
this.updatedDate = updatedDate;
return this;
}
/**
* Time
* @return updatedDate
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2022-01-21T20:11:19.217Z", value = "Time")
public String getUpdatedDate() {
return updatedDate;
}
public void setUpdatedDate(String updatedDate) {
this.updatedDate = updatedDate;
}
public BrokerageAuthorization brokerage(Brokerage brokerage) {
this.brokerage = brokerage;
return this;
}
/**
* Get brokerage
* @return brokerage
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Brokerage getBrokerage() {
return brokerage;
}
public void setBrokerage(Brokerage brokerage) {
this.brokerage = brokerage;
}
public BrokerageAuthorization name(String name) {
this.name = name;
return this;
}
/**
* Connection Name
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "Connection-1", value = "Connection Name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public BrokerageAuthorization type(String type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "trade", value = "")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public BrokerageAuthorization disabled(Boolean disabled) {
this.disabled = disabled;
return this;
}
/**
* Get disabled
* @return disabled
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "false", value = "")
public Boolean getDisabled() {
return disabled;
}
public void setDisabled(Boolean disabled) {
this.disabled = disabled;
}
public BrokerageAuthorization disabledDate(String disabledDate) {
this.disabledDate = disabledDate;
return this;
}
/**
* Disabled date
* @return disabledDate
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2022-01-21T20:11:19.217Z", value = "Disabled date")
public String getDisabledDate() {
return disabledDate;
}
public void setDisabledDate(String disabledDate) {
this.disabledDate = disabledDate;
}
public BrokerageAuthorization meta(Map meta) {
this.meta = meta;
return this;
}
public BrokerageAuthorization putMetaItem(String key, Object metaItem) {
if (this.meta == null) {
this.meta = new HashMap<>();
}
this.meta.put(key, metaItem);
return this;
}
/**
* Additional data about brokerage authorization
* @return meta
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "{\"identifier\":123456}", value = "Additional data about brokerage authorization")
public Map getMeta() {
return meta;
}
public void setMeta(Map meta) {
this.meta = meta;
}
/**
* 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 BrokerageAuthorization instance itself
*/
public BrokerageAuthorization 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;
}
BrokerageAuthorization brokerageAuthorization = (BrokerageAuthorization) o;
return Objects.equals(this.id, brokerageAuthorization.id) &&
Objects.equals(this.createdDate, brokerageAuthorization.createdDate) &&
Objects.equals(this.updatedDate, brokerageAuthorization.updatedDate) &&
Objects.equals(this.brokerage, brokerageAuthorization.brokerage) &&
Objects.equals(this.name, brokerageAuthorization.name) &&
Objects.equals(this.type, brokerageAuthorization.type) &&
Objects.equals(this.disabled, brokerageAuthorization.disabled) &&
Objects.equals(this.disabledDate, brokerageAuthorization.disabledDate) &&
Objects.equals(this.meta, brokerageAuthorization.meta)&&
Objects.equals(this.additionalProperties, brokerageAuthorization.additionalProperties);
}
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(id, createdDate, updatedDate, brokerage, name, type, disabled, disabledDate, meta, additionalProperties);
}
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 BrokerageAuthorization {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" createdDate: ").append(toIndentedString(createdDate)).append("\n");
sb.append(" updatedDate: ").append(toIndentedString(updatedDate)).append("\n");
sb.append(" brokerage: ").append(toIndentedString(brokerage)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" disabled: ").append(toIndentedString(disabled)).append("\n");
sb.append(" disabledDate: ").append(toIndentedString(disabledDate)).append("\n");
sb.append(" meta: ").append(toIndentedString(meta)).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("id");
openapiFields.add("created_date");
openapiFields.add("updated_date");
openapiFields.add("brokerage");
openapiFields.add("name");
openapiFields.add("type");
openapiFields.add("disabled");
openapiFields.add("disabled_date");
openapiFields.add("meta");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
}
/**
* 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 BrokerageAuthorization
*/
public static void validateJsonObject(JsonObject jsonObj) throws IOException {
if (jsonObj == null) {
if (!BrokerageAuthorization.openapiRequiredFields.isEmpty()) { // has required fields but JSON object is null
throw new IllegalArgumentException(String.format("The required field(s) %s in BrokerageAuthorization is not found in the empty JSON string", BrokerageAuthorization.openapiRequiredFields.toString()));
}
}
if ((jsonObj.get("id") != null && !jsonObj.get("id").isJsonNull()) && !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()));
}
if ((jsonObj.get("created_date") != null && !jsonObj.get("created_date").isJsonNull()) && !jsonObj.get("created_date").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `created_date` to be a primitive type in the JSON string but got `%s`", jsonObj.get("created_date").toString()));
}
if ((jsonObj.get("updated_date") != null && !jsonObj.get("updated_date").isJsonNull()) && !jsonObj.get("updated_date").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `updated_date` to be a primitive type in the JSON string but got `%s`", jsonObj.get("updated_date").toString()));
}
// validate the optional field `brokerage`
if (jsonObj.get("brokerage") != null && !jsonObj.get("brokerage").isJsonNull()) {
Brokerage.validateJsonObject(jsonObj.getAsJsonObject("brokerage"));
}
if ((jsonObj.get("name") != null && !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("type") != null && !jsonObj.get("type").isJsonNull()) && !jsonObj.get("type").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `type` to be a primitive type in the JSON string but got `%s`", jsonObj.get("type").toString()));
}
if (!jsonObj.get("disabled_date").isJsonNull() && (jsonObj.get("disabled_date") != null && !jsonObj.get("disabled_date").isJsonNull()) && !jsonObj.get("disabled_date").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `disabled_date` to be a primitive type in the JSON string but got `%s`", jsonObj.get("disabled_date").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!BrokerageAuthorization.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'BrokerageAuthorization' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(BrokerageAuthorization.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, BrokerageAuthorization 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 BrokerageAuthorization read(JsonReader in) throws IOException {
JsonObject jsonObj = elementAdapter.read(in).getAsJsonObject();
validateJsonObject(jsonObj);
// store additional fields in the deserialized instance
BrokerageAuthorization 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 BrokerageAuthorization given an JSON string
*
* @param jsonString JSON string
* @return An instance of BrokerageAuthorization
* @throws IOException if the JSON string is invalid with respect to BrokerageAuthorization
*/
public static BrokerageAuthorization fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, BrokerageAuthorization.class);
}
/**
* Convert an instance of BrokerageAuthorization to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}