com.finbourne.identity.model.SupportAccessRequest Maven / Gradle / Ivy
/*
* FINBOURNE Identity Service API
*
* Contact: [email protected]
*
* 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.finbourne.identity.model;
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 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.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.finbourne.identity.JSON;
/**
* A Request to grant support access to your account
*/
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class SupportAccessRequest {
public static final String SERIALIZED_NAME_DURATION = "duration";
@SerializedName(SERIALIZED_NAME_DURATION)
private String duration;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_PERMITTED_ROLES = "permittedRoles";
@SerializedName(SERIALIZED_NAME_PERMITTED_ROLES)
private List permittedRoles;
public SupportAccessRequest() {
}
public SupportAccessRequest duration(String duration) {
this.duration = duration;
return this;
}
/**
* The duration for which access is requested (in any ISO-8601 format)
* @return duration
**/
@jakarta.annotation.Nonnull
public String getDuration() {
return duration;
}
public void setDuration(String duration) {
this.duration = duration;
}
public SupportAccessRequest description(String description) {
this.description = description;
return this;
}
/**
* The description of why the support access has been granted (i.e. support ticket numbers)
* @return description
**/
@jakarta.annotation.Nullable
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public SupportAccessRequest permittedRoles(List permittedRoles) {
this.permittedRoles = permittedRoles;
return this;
}
public SupportAccessRequest addPermittedRolesItem(String permittedRolesItem) {
if (this.permittedRoles == null) {
this.permittedRoles = new ArrayList<>();
}
this.permittedRoles.add(permittedRolesItem);
return this;
}
/**
* Get permittedRoles
* @return permittedRoles
**/
@jakarta.annotation.Nullable
public List getPermittedRoles() {
return permittedRoles;
}
public void setPermittedRoles(List permittedRoles) {
this.permittedRoles = permittedRoles;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SupportAccessRequest supportAccessRequest = (SupportAccessRequest) o;
return Objects.equals(this.duration, supportAccessRequest.duration) &&
Objects.equals(this.description, supportAccessRequest.description) &&
Objects.equals(this.permittedRoles, supportAccessRequest.permittedRoles);
}
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(duration, description, permittedRoles);
}
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 SupportAccessRequest {\n");
sb.append(" duration: ").append(toIndentedString(duration)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" permittedRoles: ").append(toIndentedString(permittedRoles)).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("duration");
openapiFields.add("description");
openapiFields.add("permittedRoles");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
openapiRequiredFields.add("duration");
}
/**
* 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 SupportAccessRequest
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!SupportAccessRequest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in SupportAccessRequest is not found in the empty JSON string", SupportAccessRequest.openapiRequiredFields.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : SupportAccessRequest.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();
if (!jsonObj.get("duration").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `duration` to be a primitive type in the JSON string but got `%s`", jsonObj.get("duration").toString()));
}
if ((jsonObj.get("description") != null && !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()));
}
// ensure the optional json data is an array if present
if (jsonObj.get("permittedRoles") != null && !jsonObj.get("permittedRoles").isJsonNull() && !jsonObj.get("permittedRoles").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `permittedRoles` to be an array in the JSON string but got `%s`", jsonObj.get("permittedRoles").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!SupportAccessRequest.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'SupportAccessRequest' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(SupportAccessRequest.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, SupportAccessRequest value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public SupportAccessRequest read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of SupportAccessRequest given an JSON string
*
* @param jsonString JSON string
* @return An instance of SupportAccessRequest
* @throws IOException if the JSON string is invalid with respect to SupportAccessRequest
*/
public static SupportAccessRequest fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, SupportAccessRequest.class);
}
/**
* Convert an instance of SupportAccessRequest to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}