com.zuora.model.GetWorkflowResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zuora-sdk-java Show documentation
Show all versions of zuora-sdk-java Show documentation
The SDK of JAVA language for Zuora pricing system
/*
* Zuora API Reference
* REST API reference for the Zuora Billing, Payments, and Central Platform! Check out the [REST API Overview](https://www.zuora.com/developer/api-references/api/overview/).
*
* The version of the OpenAPI document: 2024-05-20
* 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.zuora.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 com.zuora.model.GetWorkflowResponseStatus;
import com.zuora.model.GetWorkflowResponseTasks;
import java.io.IOException;
import java.util.Arrays;
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.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.zuora.JSON;
/**
* GetWorkflowResponse
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
public class GetWorkflowResponse {
public static final String SERIALIZED_NAME_CPU_TIME = "cpuTime";
@SerializedName(SERIALIZED_NAME_CPU_TIME)
private String cpuTime;
public static final String SERIALIZED_NAME_CREATED_AT = "createdAt";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
private String createdAt;
public static final String SERIALIZED_NAME_FINISHED_AT = "finishedAt";
@SerializedName(SERIALIZED_NAME_FINISHED_AT)
private String finishedAt;
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private Integer id;
public static final String SERIALIZED_NAME_MESSAGES = "messages";
@SerializedName(SERIALIZED_NAME_MESSAGES)
private Object messages;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_ORIGINAL_WORKFLOW_ID = "originalWorkflowId";
@SerializedName(SERIALIZED_NAME_ORIGINAL_WORKFLOW_ID)
private String originalWorkflowId;
public static final String SERIALIZED_NAME_RUN_TIME = "runTime";
@SerializedName(SERIALIZED_NAME_RUN_TIME)
private Double runTime;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private GetWorkflowResponseStatus status;
public static final String SERIALIZED_NAME_TASKS = "tasks";
@SerializedName(SERIALIZED_NAME_TASKS)
private GetWorkflowResponseTasks tasks;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private String type;
public static final String SERIALIZED_NAME_UPDATED_AT = "updatedAt";
@SerializedName(SERIALIZED_NAME_UPDATED_AT)
private String updatedAt;
public GetWorkflowResponse() {
}
public GetWorkflowResponse cpuTime(String cpuTime) {
this.cpuTime = cpuTime;
return this;
}
/**
* The overall CPU time for the execution of the workflow.
* @return cpuTime
*/
@javax.annotation.Nullable
public String getCpuTime() {
return cpuTime;
}
public void setCpuTime(String cpuTime) {
this.cpuTime = cpuTime;
}
public GetWorkflowResponse createdAt(String createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* The date and time when the workflow is created, in the `YYYY-MM-DD HH:MM:SS` format..
* @return createdAt
*/
@javax.annotation.Nullable
public String getCreatedAt() {
return createdAt;
}
public void setCreatedAt(String createdAt) {
this.createdAt = createdAt;
}
public GetWorkflowResponse finishedAt(String finishedAt) {
this.finishedAt = finishedAt;
return this;
}
/**
* The date and time when the execution of the workflow completes, in the `YYYY-MM-DD HH:MM:SS` format.
* @return finishedAt
*/
@javax.annotation.Nullable
public String getFinishedAt() {
return finishedAt;
}
public void setFinishedAt(String finishedAt) {
this.finishedAt = finishedAt;
}
public GetWorkflowResponse id(Integer id) {
this.id = id;
return this;
}
/**
* The unique ID of the workflow.
* @return id
*/
@javax.annotation.Nullable
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public GetWorkflowResponse messages(Object messages) {
this.messages = messages;
return this;
}
/**
* Messages from tasks. **Note:** This field is only returned in Production.
* @return messages
*/
@javax.annotation.Nullable
public Object getMessages() {
return messages;
}
public void setMessages(Object messages) {
this.messages = messages;
}
public GetWorkflowResponse name(String name) {
this.name = name;
return this;
}
/**
* The unique run number of the workflow.
* @return name
*/
@javax.annotation.Nullable
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public GetWorkflowResponse originalWorkflowId(String originalWorkflowId) {
this.originalWorkflowId = originalWorkflowId;
return this;
}
/**
* The ID of the workflow setup.
* @return originalWorkflowId
*/
@javax.annotation.Nullable
public String getOriginalWorkflowId() {
return originalWorkflowId;
}
public void setOriginalWorkflowId(String originalWorkflowId) {
this.originalWorkflowId = originalWorkflowId;
}
public GetWorkflowResponse runTime(Double runTime) {
this.runTime = runTime;
return this;
}
/**
* The execution time of the workflow including the waiting time, in seconds.
* @return runTime
*/
@javax.annotation.Nullable
public Double getRunTime() {
return runTime;
}
public void setRunTime(Double runTime) {
this.runTime = runTime;
}
public GetWorkflowResponse status(GetWorkflowResponseStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
*/
@javax.annotation.Nullable
public GetWorkflowResponseStatus getStatus() {
return status;
}
public void setStatus(GetWorkflowResponseStatus status) {
this.status = status;
}
public GetWorkflowResponse tasks(GetWorkflowResponseTasks tasks) {
this.tasks = tasks;
return this;
}
/**
* Get tasks
* @return tasks
*/
@javax.annotation.Nullable
public GetWorkflowResponseTasks getTasks() {
return tasks;
}
public void setTasks(GetWorkflowResponseTasks tasks) {
this.tasks = tasks;
}
public GetWorkflowResponse type(String type) {
this.type = type;
return this;
}
/**
* The type of the current workflow. Possible values: - `Workflow::Setup`: The workflow is a setup and is used for creating workflow instances. - `Workflow::Instance`: The workflow is an execution that has data.
* @return type
*/
@javax.annotation.Nullable
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public GetWorkflowResponse updatedAt(String updatedAt) {
this.updatedAt = updatedAt;
return this;
}
/**
* The date and time when the workflow is updated the last time, in the `YYYY-MM-DD HH:MM:SS` format.
* @return updatedAt
*/
@javax.annotation.Nullable
public String getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(String updatedAt) {
this.updatedAt = updatedAt;
}
/**
* 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 GetWorkflowResponse instance itself
*/
public GetWorkflowResponse 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;
}
GetWorkflowResponse getWorkflowResponse = (GetWorkflowResponse) o;
return Objects.equals(this.cpuTime, getWorkflowResponse.cpuTime) &&
Objects.equals(this.createdAt, getWorkflowResponse.createdAt) &&
Objects.equals(this.finishedAt, getWorkflowResponse.finishedAt) &&
Objects.equals(this.id, getWorkflowResponse.id) &&
Objects.equals(this.messages, getWorkflowResponse.messages) &&
Objects.equals(this.name, getWorkflowResponse.name) &&
Objects.equals(this.originalWorkflowId, getWorkflowResponse.originalWorkflowId) &&
Objects.equals(this.runTime, getWorkflowResponse.runTime) &&
Objects.equals(this.status, getWorkflowResponse.status) &&
Objects.equals(this.tasks, getWorkflowResponse.tasks) &&
Objects.equals(this.type, getWorkflowResponse.type) &&
Objects.equals(this.updatedAt, getWorkflowResponse.updatedAt)&&
Objects.equals(this.additionalProperties, getWorkflowResponse.additionalProperties);
}
@Override
public int hashCode() {
return Objects.hash(cpuTime, createdAt, finishedAt, id, messages, name, originalWorkflowId, runTime, status, tasks, type, updatedAt, additionalProperties);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GetWorkflowResponse {\n");
sb.append(" cpuTime: ").append(toIndentedString(cpuTime)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" finishedAt: ").append(toIndentedString(finishedAt)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" messages: ").append(toIndentedString(messages)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" originalWorkflowId: ").append(toIndentedString(originalWorkflowId)).append("\n");
sb.append(" runTime: ").append(toIndentedString(runTime)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" tasks: ").append(toIndentedString(tasks)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).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("cpuTime");
openapiFields.add("createdAt");
openapiFields.add("finishedAt");
openapiFields.add("id");
openapiFields.add("messages");
openapiFields.add("name");
openapiFields.add("originalWorkflowId");
openapiFields.add("runTime");
openapiFields.add("status");
openapiFields.add("tasks");
openapiFields.add("type");
openapiFields.add("updatedAt");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
}
/**
* 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 GetWorkflowResponse
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!GetWorkflowResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in GetWorkflowResponse is not found in the empty JSON string", GetWorkflowResponse.openapiRequiredFields.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
if ((jsonObj.get("cpuTime") != null && !jsonObj.get("cpuTime").isJsonNull()) && !jsonObj.get("cpuTime").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `cpuTime` to be a primitive type in the JSON string but got `%s`", jsonObj.get("cpuTime").toString()));
}
if ((jsonObj.get("createdAt") != null && !jsonObj.get("createdAt").isJsonNull()) && !jsonObj.get("createdAt").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `createdAt` to be a primitive type in the JSON string but got `%s`", jsonObj.get("createdAt").toString()));
}
if ((jsonObj.get("finishedAt") != null && !jsonObj.get("finishedAt").isJsonNull()) && !jsonObj.get("finishedAt").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `finishedAt` to be a primitive type in the JSON string but got `%s`", jsonObj.get("finishedAt").toString()));
}
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("originalWorkflowId") != null && !jsonObj.get("originalWorkflowId").isJsonNull()) && !jsonObj.get("originalWorkflowId").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `originalWorkflowId` to be a primitive type in the JSON string but got `%s`", jsonObj.get("originalWorkflowId").toString()));
}
if ((jsonObj.get("status") != null && !jsonObj.get("status").isJsonNull()) && !jsonObj.get("status").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `status` to be a primitive type in the JSON string but got `%s`", jsonObj.get("status").toString()));
}
// validate the optional field `status`
if (jsonObj.get("status") != null && !jsonObj.get("status").isJsonNull()) {
GetWorkflowResponseStatus.validateJsonElement(jsonObj.get("status"));
}
// validate the optional field `tasks`
if (jsonObj.get("tasks") != null && !jsonObj.get("tasks").isJsonNull()) {
GetWorkflowResponseTasks.validateJsonElement(jsonObj.get("tasks"));
}
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("updatedAt") != null && !jsonObj.get("updatedAt").isJsonNull()) && !jsonObj.get("updatedAt").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `updatedAt` to be a primitive type in the JSON string but got `%s`", jsonObj.get("updatedAt").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!GetWorkflowResponse.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'GetWorkflowResponse' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(GetWorkflowResponse.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, GetWorkflowResponse value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
// support null values
out.beginObject();
Iterator iterator = obj.entrySet().iterator();
while(iterator.hasNext()) {
Map.Entry e = (Map.Entry) iterator.next();
out.name((String)e.getKey());
elementAdapter.write(out, e.getValue());
}
// end
// serialize additional properties
if (value.getAdditionalProperties() != null) {
// support null values
boolean oldSerializeNulls = out.getSerializeNulls();
out.setSerializeNulls(true); //force serialize
// end
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.add(entry.getKey(), null);
else {
JsonElement jsonElement = gson.toJsonTree(entry.getValue());
if (jsonElement.isJsonArray()) {
obj.add(entry.getKey(), jsonElement.getAsJsonArray());
} else {
obj.add(entry.getKey(), jsonElement.getAsJsonObject());
}
}
out.name((String)entry.getKey());
elementAdapter.write(out, obj.get(entry.getKey()));
}
out.setSerializeNulls(oldSerializeNulls); //restore
}
out.endObject();
}
@Override
public GetWorkflowResponse read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
JsonObject jsonObj = jsonElement.getAsJsonObject();
// store additional fields in the deserialized instance
GetWorkflowResponse 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 GetWorkflowResponse given an JSON string
*
* @param jsonString JSON string
* @return An instance of GetWorkflowResponse
* @throws IOException if the JSON string is invalid with respect to GetWorkflowResponse
*/
public static GetWorkflowResponse fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, GetWorkflowResponse.class);
}
/**
* Convert an instance of GetWorkflowResponse to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy