com.zuora.model.UpdatePaymentRunRequest 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 java.io.IOException;
import java.time.LocalDate;
import java.time.OffsetDateTime;
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;
/**
* UpdatePaymentRunRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
public class UpdatePaymentRunRequest {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "accountId";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
private String accountId;
public static final String SERIALIZED_NAME_APPLY_CREDIT_BALANCE = "applyCreditBalance";
@SerializedName(SERIALIZED_NAME_APPLY_CREDIT_BALANCE)
private Boolean applyCreditBalance;
public static final String SERIALIZED_NAME_AUTO_APPLY_CREDIT_MEMO = "autoApplyCreditMemo";
@SerializedName(SERIALIZED_NAME_AUTO_APPLY_CREDIT_MEMO)
private Boolean autoApplyCreditMemo;
public static final String SERIALIZED_NAME_AUTO_APPLY_UNAPPLIED_PAYMENT = "autoApplyUnappliedPayment";
@SerializedName(SERIALIZED_NAME_AUTO_APPLY_UNAPPLIED_PAYMENT)
private Boolean autoApplyUnappliedPayment;
public static final String SERIALIZED_NAME_BATCH = "batch";
@SerializedName(SERIALIZED_NAME_BATCH)
private String batch;
public static final String SERIALIZED_NAME_BILL_CYCLE_DAY = "billCycleDay";
@SerializedName(SERIALIZED_NAME_BILL_CYCLE_DAY)
private String billCycleDay;
public static final String SERIALIZED_NAME_BILLING_RUN_ID = "billingRunId";
@SerializedName(SERIALIZED_NAME_BILLING_RUN_ID)
private String billingRunId;
public static final String SERIALIZED_NAME_COLLECT_PAYMENT = "collectPayment";
@SerializedName(SERIALIZED_NAME_COLLECT_PAYMENT)
private Boolean collectPayment;
public static final String SERIALIZED_NAME_CONSOLIDATED_PAYMENT = "consolidatedPayment";
@SerializedName(SERIALIZED_NAME_CONSOLIDATED_PAYMENT)
private Boolean consolidatedPayment;
public static final String SERIALIZED_NAME_CURRENCY = "currency";
@SerializedName(SERIALIZED_NAME_CURRENCY)
private String currency;
public static final String SERIALIZED_NAME_PAYMENT_GATEWAY_ID = "paymentGatewayId";
@SerializedName(SERIALIZED_NAME_PAYMENT_GATEWAY_ID)
private String paymentGatewayId;
public static final String SERIALIZED_NAME_PROCESS_PAYMENT_WITH_CLOSED_P_M = "processPaymentWithClosedPM";
@SerializedName(SERIALIZED_NAME_PROCESS_PAYMENT_WITH_CLOSED_P_M)
private Boolean processPaymentWithClosedPM;
public static final String SERIALIZED_NAME_RUN_DATE = "runDate";
@SerializedName(SERIALIZED_NAME_RUN_DATE)
private OffsetDateTime runDate;
public static final String SERIALIZED_NAME_TARGET_DATE = "targetDate";
@SerializedName(SERIALIZED_NAME_TARGET_DATE)
private LocalDate targetDate;
public UpdatePaymentRunRequest() {
}
public UpdatePaymentRunRequest accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* The ID of the customer account associated with the payment run. This field conflicts with each of the `batch`, `billCycleDay`, `currency`, `paymentGatewayId`, and `billingRunId` fields. If there are such conflicts, an error occurs and an error message is returned.
* @return accountId
*/
@javax.annotation.Nullable
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public UpdatePaymentRunRequest applyCreditBalance(Boolean applyCreditBalance) {
this.applyCreditBalance = applyCreditBalance;
return this;
}
/**
* **Note:** This field is only available if you have the Credit Balance feature enabled and the Invoice Settlement feature disabled. Whether to apply credit balances in the payment run. This field is only available when you have Invoice Settlement feature disabled.
* @return applyCreditBalance
*/
@javax.annotation.Nullable
public Boolean getApplyCreditBalance() {
return applyCreditBalance;
}
public void setApplyCreditBalance(Boolean applyCreditBalance) {
this.applyCreditBalance = applyCreditBalance;
}
public UpdatePaymentRunRequest autoApplyCreditMemo(Boolean autoApplyCreditMemo) {
this.autoApplyCreditMemo = autoApplyCreditMemo;
return this;
}
/**
* **Note:** This field is only available if you have [Invoice Settlement](https://knowledgecenter.zuora.com/Billing/Billing_and_Payments/Invoice_Settlement) enabled. The Invoice Settlement feature is generally available as of Zuora Billing Release 296 (March 2021). This feature includes Unapplied Payments, Credit and Debit Memo, and Invoice Item Settlement. If you want to enable Invoice Settlement, see [Invoice Settlement Enablement and Checklist Guide](https://knowledgecenter.zuora.com/Billing/Billing_and_Payments/Invoice_Settlement/Invoice_Settlement_Migration_Checklist_and_Guide) for more information. Whether to automatically apply a posted credit memo to one or more receivables in the payment run.
* @return autoApplyCreditMemo
*/
@javax.annotation.Nullable
public Boolean getAutoApplyCreditMemo() {
return autoApplyCreditMemo;
}
public void setAutoApplyCreditMemo(Boolean autoApplyCreditMemo) {
this.autoApplyCreditMemo = autoApplyCreditMemo;
}
public UpdatePaymentRunRequest autoApplyUnappliedPayment(Boolean autoApplyUnappliedPayment) {
this.autoApplyUnappliedPayment = autoApplyUnappliedPayment;
return this;
}
/**
* **Note:** This field is only available if you have [Invoice Settlement](https://knowledgecenter.zuora.com/Billing/Billing_and_Payments/Invoice_Settlement) enabled. The Invoice Settlement feature is generally available as of Zuora Billing Release 296 (March 2021). This feature includes Unapplied Payments, Credit and Debit Memo, and Invoice Item Settlement. If you want to enable Invoice Settlement, see [Invoice Settlement Enablement and Checklist Guide](https://knowledgecenter.zuora.com/Billing/Billing_and_Payments/Invoice_Settlement/Invoice_Settlement_Migration_Checklist_and_Guide) for more information. Whether to automatically apply unapplied payments to one or more receivables in the payment run.
* @return autoApplyUnappliedPayment
*/
@javax.annotation.Nullable
public Boolean getAutoApplyUnappliedPayment() {
return autoApplyUnappliedPayment;
}
public void setAutoApplyUnappliedPayment(Boolean autoApplyUnappliedPayment) {
this.autoApplyUnappliedPayment = autoApplyUnappliedPayment;
}
public UpdatePaymentRunRequest batch(String batch) {
this.batch = batch;
return this;
}
/**
* The alias name given to a batch. The batch name is a string of 50 characters or less. This field conflicts with the `accountId` field. If they are both specified in the request body, an error occurs and an error message is returned.
* @return batch
*/
@javax.annotation.Nullable
public String getBatch() {
return batch;
}
public void setBatch(String batch) {
this.batch = batch;
}
public UpdatePaymentRunRequest billCycleDay(String billCycleDay) {
this.billCycleDay = billCycleDay;
return this;
}
/**
* The billing cycle day (BCD), the day of the month when a bill run generates invoices for the account. The value must be equal to or less then 31, and 31 is mean the EOM. This field conflicts with the `accountId` field. If they are both specified in the request body, an error occurs and an error message is returned.
* @return billCycleDay
*/
@javax.annotation.Nullable
public String getBillCycleDay() {
return billCycleDay;
}
public void setBillCycleDay(String billCycleDay) {
this.billCycleDay = billCycleDay;
}
public UpdatePaymentRunRequest billingRunId(String billingRunId) {
this.billingRunId = billingRunId;
return this;
}
/**
* The ID of a bill run. This field conflicts with the `accountId` field. If they are both specified in the request body, an error occurs and an error message is returned.
* @return billingRunId
*/
@javax.annotation.Nullable
public String getBillingRunId() {
return billingRunId;
}
public void setBillingRunId(String billingRunId) {
this.billingRunId = billingRunId;
}
public UpdatePaymentRunRequest collectPayment(Boolean collectPayment) {
this.collectPayment = collectPayment;
return this;
}
/**
* Whether to process electronic payments during the execution of payment runs. If the Payment user permission \"Process Electronic Payment\" is disabled, this field will be ignored.
* @return collectPayment
*/
@javax.annotation.Nullable
public Boolean getCollectPayment() {
return collectPayment;
}
public void setCollectPayment(Boolean collectPayment) {
this.collectPayment = collectPayment;
}
public UpdatePaymentRunRequest consolidatedPayment(Boolean consolidatedPayment) {
this.consolidatedPayment = consolidatedPayment;
return this;
}
/**
* **Note:** The **Process Electronic Payment** permission also needs to be allowed for a Manage Payment Runs role to work. See [Payments Roles](https://knowledgecenter.zuora.com/CF_Users_and_Administrators/A_Administrator_Settings/User_Roles/e_Payments_Roles) for more information. Whether to process a single payment for all receivables that are due on an account.
* @return consolidatedPayment
*/
@javax.annotation.Nullable
public Boolean getConsolidatedPayment() {
return consolidatedPayment;
}
public void setConsolidatedPayment(Boolean consolidatedPayment) {
this.consolidatedPayment = consolidatedPayment;
}
public UpdatePaymentRunRequest currency(String currency) {
this.currency = currency;
return this;
}
/**
* A currency defined in the web-based UI administrative settings. This field conflicts with the `accountId` field. If they are both specified in the request body, an error occurs and an error message is returned.
* @return currency
*/
@javax.annotation.Nullable
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
public UpdatePaymentRunRequest paymentGatewayId(String paymentGatewayId) {
this.paymentGatewayId = paymentGatewayId;
return this;
}
/**
* The ID of the gateway instance that processes the payment. This field conflicts with the `accountId` field. If they are both specified in the request body, an error occurs and an error message is returned.
* @return paymentGatewayId
*/
@javax.annotation.Nullable
public String getPaymentGatewayId() {
return paymentGatewayId;
}
public void setPaymentGatewayId(String paymentGatewayId) {
this.paymentGatewayId = paymentGatewayId;
}
public UpdatePaymentRunRequest processPaymentWithClosedPM(Boolean processPaymentWithClosedPM) {
this.processPaymentWithClosedPM = processPaymentWithClosedPM;
return this;
}
/**
* **Note:** The **Process Electronic Payment** permission also needs to be allowed for a Manage Payment Runs role to work. See [Payments Roles](https://knowledgecenter.zuora.com/CF_Users_and_Administrators/A_Administrator_Settings/User_Roles/e_Payments_Roles) for more information. Whether to process payments even if the default payment method is closed.
* @return processPaymentWithClosedPM
*/
@javax.annotation.Nullable
public Boolean getProcessPaymentWithClosedPM() {
return processPaymentWithClosedPM;
}
public void setProcessPaymentWithClosedPM(Boolean processPaymentWithClosedPM) {
this.processPaymentWithClosedPM = processPaymentWithClosedPM;
}
public UpdatePaymentRunRequest runDate(OffsetDateTime runDate) {
this.runDate = runDate;
return this;
}
/**
* The date and time when the scheduled payment run is to be executed, in `yyyy-mm-dd hh:mm:ss` format. The backend will ignore mintues and seconds in the field value. For example, if you specify `2017-03-01 11:30:37` for this value, this payment run will be run at 2017-03-01 11:00:00.
* @return runDate
*/
@javax.annotation.Nullable
public OffsetDateTime getRunDate() {
return runDate;
}
public void setRunDate(OffsetDateTime runDate) {
this.runDate = runDate;
}
public UpdatePaymentRunRequest targetDate(LocalDate targetDate) {
this.targetDate = targetDate;
return this;
}
/**
* The target date used to determine which receivables to be paid in the payment run. The payments are collected for all receivables with the due date no later than the target date.
* @return targetDate
*/
@javax.annotation.Nullable
public LocalDate getTargetDate() {
return targetDate;
}
public void setTargetDate(LocalDate targetDate) {
this.targetDate = targetDate;
}
/**
* 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 UpdatePaymentRunRequest instance itself
*/
public UpdatePaymentRunRequest 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;
}
UpdatePaymentRunRequest updatePaymentRunRequest = (UpdatePaymentRunRequest) o;
return Objects.equals(this.accountId, updatePaymentRunRequest.accountId) &&
Objects.equals(this.applyCreditBalance, updatePaymentRunRequest.applyCreditBalance) &&
Objects.equals(this.autoApplyCreditMemo, updatePaymentRunRequest.autoApplyCreditMemo) &&
Objects.equals(this.autoApplyUnappliedPayment, updatePaymentRunRequest.autoApplyUnappliedPayment) &&
Objects.equals(this.batch, updatePaymentRunRequest.batch) &&
Objects.equals(this.billCycleDay, updatePaymentRunRequest.billCycleDay) &&
Objects.equals(this.billingRunId, updatePaymentRunRequest.billingRunId) &&
Objects.equals(this.collectPayment, updatePaymentRunRequest.collectPayment) &&
Objects.equals(this.consolidatedPayment, updatePaymentRunRequest.consolidatedPayment) &&
Objects.equals(this.currency, updatePaymentRunRequest.currency) &&
Objects.equals(this.paymentGatewayId, updatePaymentRunRequest.paymentGatewayId) &&
Objects.equals(this.processPaymentWithClosedPM, updatePaymentRunRequest.processPaymentWithClosedPM) &&
Objects.equals(this.runDate, updatePaymentRunRequest.runDate) &&
Objects.equals(this.targetDate, updatePaymentRunRequest.targetDate)&&
Objects.equals(this.additionalProperties, updatePaymentRunRequest.additionalProperties);
}
@Override
public int hashCode() {
return Objects.hash(accountId, applyCreditBalance, autoApplyCreditMemo, autoApplyUnappliedPayment, batch, billCycleDay, billingRunId, collectPayment, consolidatedPayment, currency, paymentGatewayId, processPaymentWithClosedPM, runDate, targetDate, additionalProperties);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpdatePaymentRunRequest {\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" applyCreditBalance: ").append(toIndentedString(applyCreditBalance)).append("\n");
sb.append(" autoApplyCreditMemo: ").append(toIndentedString(autoApplyCreditMemo)).append("\n");
sb.append(" autoApplyUnappliedPayment: ").append(toIndentedString(autoApplyUnappliedPayment)).append("\n");
sb.append(" batch: ").append(toIndentedString(batch)).append("\n");
sb.append(" billCycleDay: ").append(toIndentedString(billCycleDay)).append("\n");
sb.append(" billingRunId: ").append(toIndentedString(billingRunId)).append("\n");
sb.append(" collectPayment: ").append(toIndentedString(collectPayment)).append("\n");
sb.append(" consolidatedPayment: ").append(toIndentedString(consolidatedPayment)).append("\n");
sb.append(" currency: ").append(toIndentedString(currency)).append("\n");
sb.append(" paymentGatewayId: ").append(toIndentedString(paymentGatewayId)).append("\n");
sb.append(" processPaymentWithClosedPM: ").append(toIndentedString(processPaymentWithClosedPM)).append("\n");
sb.append(" runDate: ").append(toIndentedString(runDate)).append("\n");
sb.append(" targetDate: ").append(toIndentedString(targetDate)).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("accountId");
openapiFields.add("applyCreditBalance");
openapiFields.add("autoApplyCreditMemo");
openapiFields.add("autoApplyUnappliedPayment");
openapiFields.add("batch");
openapiFields.add("billCycleDay");
openapiFields.add("billingRunId");
openapiFields.add("collectPayment");
openapiFields.add("consolidatedPayment");
openapiFields.add("currency");
openapiFields.add("paymentGatewayId");
openapiFields.add("processPaymentWithClosedPM");
openapiFields.add("runDate");
openapiFields.add("targetDate");
// 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 UpdatePaymentRunRequest
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!UpdatePaymentRunRequest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in UpdatePaymentRunRequest is not found in the empty JSON string", UpdatePaymentRunRequest.openapiRequiredFields.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
if ((jsonObj.get("accountId") != null && !jsonObj.get("accountId").isJsonNull()) && !jsonObj.get("accountId").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `accountId` to be a primitive type in the JSON string but got `%s`", jsonObj.get("accountId").toString()));
}
if ((jsonObj.get("batch") != null && !jsonObj.get("batch").isJsonNull()) && !jsonObj.get("batch").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `batch` to be a primitive type in the JSON string but got `%s`", jsonObj.get("batch").toString()));
}
if ((jsonObj.get("billCycleDay") != null && !jsonObj.get("billCycleDay").isJsonNull()) && !jsonObj.get("billCycleDay").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `billCycleDay` to be a primitive type in the JSON string but got `%s`", jsonObj.get("billCycleDay").toString()));
}
if ((jsonObj.get("billingRunId") != null && !jsonObj.get("billingRunId").isJsonNull()) && !jsonObj.get("billingRunId").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `billingRunId` to be a primitive type in the JSON string but got `%s`", jsonObj.get("billingRunId").toString()));
}
if ((jsonObj.get("currency") != null && !jsonObj.get("currency").isJsonNull()) && !jsonObj.get("currency").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `currency` to be a primitive type in the JSON string but got `%s`", jsonObj.get("currency").toString()));
}
if ((jsonObj.get("paymentGatewayId") != null && !jsonObj.get("paymentGatewayId").isJsonNull()) && !jsonObj.get("paymentGatewayId").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `paymentGatewayId` to be a primitive type in the JSON string but got `%s`", jsonObj.get("paymentGatewayId").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!UpdatePaymentRunRequest.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'UpdatePaymentRunRequest' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(UpdatePaymentRunRequest.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, UpdatePaymentRunRequest 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 UpdatePaymentRunRequest read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
JsonObject jsonObj = jsonElement.getAsJsonObject();
// store additional fields in the deserialized instance
UpdatePaymentRunRequest 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 UpdatePaymentRunRequest given an JSON string
*
* @param jsonString JSON string
* @return An instance of UpdatePaymentRunRequest
* @throws IOException if the JSON string is invalid with respect to UpdatePaymentRunRequest
*/
public static UpdatePaymentRunRequest fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, UpdatePaymentRunRequest.class);
}
/**
* Convert an instance of UpdatePaymentRunRequest to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy