All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.v3.model.SettleClause Maven / Gradle / Ivy

There is a newer version: 3.1.6.ALL
Show newest version
/*
 * 支付宝开放平台API
 * 支付宝开放平台v3协议文档
 *
 * The version of the OpenAPI document: 2022-12-23
 * 
 *
 * 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.alipay.v3.model;

import java.util.Objects;
import java.util.Arrays;
import com.alipay.v3.model.SubMerchant;
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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.io.Serializable;

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 java.lang.reflect.Type;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;

import com.alipay.v3.JSON;

/**
 * SettleClause
 */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class SettleClause {
  private static final long serialVersionUID = 1L;

  public static final String SERIALIZED_NAME_AMOUNT = "amount";
  @SerializedName(SERIALIZED_NAME_AMOUNT)
  private String amount;

  public static final String SERIALIZED_NAME_CURRENCY = "currency";
  @SerializedName(SERIALIZED_NAME_CURRENCY)
  private String currency;

  public static final String SERIALIZED_NAME_SETTLE_ACCOUNT_ENTITY = "settle_account_entity";
  @SerializedName(SERIALIZED_NAME_SETTLE_ACCOUNT_ENTITY)
  private String settleAccountEntity;

  public static final String SERIALIZED_NAME_SETTLE_ACCOUNT_ID = "settle_account_id";
  @SerializedName(SERIALIZED_NAME_SETTLE_ACCOUNT_ID)
  private String settleAccountId;

  public static final String SERIALIZED_NAME_SETTLE_ACCOUNT_ID_TYPE = "settle_account_id_type";
  @SerializedName(SERIALIZED_NAME_SETTLE_ACCOUNT_ID_TYPE)
  private String settleAccountIdType;

  public static final String SERIALIZED_NAME_SETTLE_ACCOUNT_TYPE = "settle_account_type";
  @SerializedName(SERIALIZED_NAME_SETTLE_ACCOUNT_TYPE)
  private String settleAccountType;

  public static final String SERIALIZED_NAME_SETTLE_ENTITY_ID = "settle_entity_id";
  @SerializedName(SERIALIZED_NAME_SETTLE_ENTITY_ID)
  private String settleEntityId;

  public static final String SERIALIZED_NAME_SETTLE_ENTITY_TYPE = "settle_entity_type";
  @SerializedName(SERIALIZED_NAME_SETTLE_ENTITY_TYPE)
  private String settleEntityType;

  public static final String SERIALIZED_NAME_SUB_MERCHANT = "sub_merchant";
  @SerializedName(SERIALIZED_NAME_SUB_MERCHANT)
  private SubMerchant subMerchant;

  public SettleClause() { 
  }

  public SettleClause amount(String amount) {
    
    this.amount = amount;
    return this;
  }

   /**
   * 结算金额,单位为元
   * @return amount
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(example = "0.1", value = "结算金额,单位为元")

  public String getAmount() {
    return amount;
  }


  public void setAmount(String amount) {
    this.amount = amount;
  }


  public SettleClause currency(String currency) {
    
    this.currency = currency;
    return this;
  }

   /**
   * 结算币种,支持人民币:CNY
   * @return currency
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(example = "CNY", value = "结算币种,支持人民币:CNY")

  public String getCurrency() {
    return currency;
  }


  public void setCurrency(String currency) {
    this.currency = currency;
  }


  public SettleClause settleAccountEntity(String settleAccountEntity) {
    
    this.settleAccountEntity = settleAccountEntity;
    return this;
  }

   /**
   * 结算账号所属于的结算主体类型。 secondMerchant 二级商户的结算账号 store 门店的结算账号 如果不填,默认为settleEntityType对应的类型
   * @return settleAccountEntity
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(example = "secondMerchant", value = "结算账号所属于的结算主体类型。 secondMerchant 二级商户的结算账号 store 门店的结算账号 如果不填,默认为settleEntityType对应的类型")

  public String getSettleAccountEntity() {
    return settleAccountEntity;
  }


  public void setSettleAccountEntity(String settleAccountEntity) {
    this.settleAccountEntity = settleAccountEntity;
  }


  public SettleClause settleAccountId(String settleAccountId) {
    
    this.settleAccountId = settleAccountId;
    return this;
  }

   /**
   * 结算账户id。  当结算账户id类型是cardSerialNo时,本参数为用户在支付宝绑定的卡编号;当结算账户id类型是userId时,本参数为用户的支付宝账号对应的支付宝唯一用户号;当结算账户id类型是loginName时,本参数为用户的支付宝登录号; 当 settle_account_type 为defaultSettle时,本参数必须为空
   * @return settleAccountId
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(example = "15912345678", value = "结算账户id。  当结算账户id类型是cardSerialNo时,本参数为用户在支付宝绑定的卡编号;当结算账户id类型是userId时,本参数为用户的支付宝账号对应的支付宝唯一用户号;当结算账户id类型是loginName时,本参数为用户的支付宝登录号; 当 settle_account_type 为defaultSettle时,本参数必须为空")

  public String getSettleAccountId() {
    return settleAccountId;
  }


  public void setSettleAccountId(String settleAccountId) {
    this.settleAccountId = settleAccountId;
  }


  public SettleClause settleAccountIdType(String settleAccountIdType) {
    
    this.settleAccountIdType = settleAccountIdType;
    return this;
  }

   /**
   * 结算账户id类型。  当settle_account_type 为bankCard时,本参数为cardSerialNo,表示结算账户id是银行卡编号; 当settle_account_type 为alipayBalance时,本参数为userId或者loginName,其中userId表示结算账户id是支付宝唯一用户号,loginName表示结算账户id是支付宝登录号; 当 settle_account_type 为 defaultSettle 时,本参数必须为空
   * @return settleAccountIdType
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(example = "loginName", value = "结算账户id类型。  当settle_account_type 为bankCard时,本参数为cardSerialNo,表示结算账户id是银行卡编号; 当settle_account_type 为alipayBalance时,本参数为userId或者loginName,其中userId表示结算账户id是支付宝唯一用户号,loginName表示结算账户id是支付宝登录号; 当 settle_account_type 为 defaultSettle 时,本参数必须为空")

  public String getSettleAccountIdType() {
    return settleAccountIdType;
  }


  public void setSettleAccountIdType(String settleAccountIdType) {
    this.settleAccountIdType = settleAccountIdType;
  }


  public SettleClause settleAccountType(String settleAccountType) {
    
    this.settleAccountType = settleAccountType;
    return this;
  }

   /**
   * 结算账户类型。  bankCard: 结算账户为银行卡; alipayBalance: 结算账户为支付宝余额户; defaultSettle: 按默认结算规则结算
   * @return settleAccountType
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(example = "alipayBalance", value = "结算账户类型。  bankCard: 结算账户为银行卡; alipayBalance: 结算账户为支付宝余额户; defaultSettle: 按默认结算规则结算")

  public String getSettleAccountType() {
    return settleAccountType;
  }


  public void setSettleAccountType(String settleAccountType) {
    this.settleAccountType = settleAccountType;
  }


  public SettleClause settleEntityId(String settleEntityId) {
    
    this.settleEntityId = settleEntityId;
    return this;
  }

   /**
   * 结算主体账号。  当结算主体类型为SecondMerchant,本参数为二级商户的SecondMerchantID
   * @return settleEntityId
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(example = "19023454", value = "结算主体账号。  当结算主体类型为SecondMerchant,本参数为二级商户的SecondMerchantID")

  public String getSettleEntityId() {
    return settleEntityId;
  }


  public void setSettleEntityId(String settleEntityId) {
    this.settleEntityId = settleEntityId;
  }


  public SettleClause settleEntityType(String settleEntityType) {
    
    this.settleEntityType = settleEntityType;
    return this;
  }

   /**
   * 结算主体类型。  SecondMerchant:结算主体为二级商户
   * @return settleEntityType
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(example = "SecondMerchant", value = "结算主体类型。  SecondMerchant:结算主体为二级商户")

  public String getSettleEntityType() {
    return settleEntityType;
  }


  public void setSettleEntityType(String settleEntityType) {
    this.settleEntityType = settleEntityType;
  }


  public SettleClause subMerchant(SubMerchant subMerchant) {
    
    this.subMerchant = subMerchant;
    return this;
  }

   /**
   * Get subMerchant
   * @return subMerchant
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")

  public SubMerchant getSubMerchant() {
    return subMerchant;
  }


  public void setSubMerchant(SubMerchant subMerchant) {
    this.subMerchant = subMerchant;
  }



  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    SettleClause settleClause = (SettleClause) o;
    return Objects.equals(this.amount, settleClause.amount) &&
        Objects.equals(this.currency, settleClause.currency) &&
        Objects.equals(this.settleAccountEntity, settleClause.settleAccountEntity) &&
        Objects.equals(this.settleAccountId, settleClause.settleAccountId) &&
        Objects.equals(this.settleAccountIdType, settleClause.settleAccountIdType) &&
        Objects.equals(this.settleAccountType, settleClause.settleAccountType) &&
        Objects.equals(this.settleEntityId, settleClause.settleEntityId) &&
        Objects.equals(this.settleEntityType, settleClause.settleEntityType) &&
        Objects.equals(this.subMerchant, settleClause.subMerchant);
  }

  @Override
  public int hashCode() {
    return Objects.hash(amount, currency, settleAccountEntity, settleAccountId, settleAccountIdType, settleAccountType, settleEntityId, settleEntityType, subMerchant);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class SettleClause {\n");
    sb.append("    amount: ").append(toIndentedString(amount)).append("\n");
    sb.append("    currency: ").append(toIndentedString(currency)).append("\n");
    sb.append("    settleAccountEntity: ").append(toIndentedString(settleAccountEntity)).append("\n");
    sb.append("    settleAccountId: ").append(toIndentedString(settleAccountId)).append("\n");
    sb.append("    settleAccountIdType: ").append(toIndentedString(settleAccountIdType)).append("\n");
    sb.append("    settleAccountType: ").append(toIndentedString(settleAccountType)).append("\n");
    sb.append("    settleEntityId: ").append(toIndentedString(settleEntityId)).append("\n");
    sb.append("    settleEntityType: ").append(toIndentedString(settleEntityType)).append("\n");
    sb.append("    subMerchant: ").append(toIndentedString(subMerchant)).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("amount");
    openapiFields.add("currency");
    openapiFields.add("settle_account_entity");
    openapiFields.add("settle_account_id");
    openapiFields.add("settle_account_id_type");
    openapiFields.add("settle_account_type");
    openapiFields.add("settle_entity_id");
    openapiFields.add("settle_entity_type");
    openapiFields.add("sub_merchant");

    // 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 SettleClause
  */
  public static void validateJsonObject(JsonObject jsonObj) throws IOException {
      if (jsonObj == null) {
        if (SettleClause.openapiRequiredFields.isEmpty()) {
          return;
        } else { // has required fields
          throw new IllegalArgumentException(String.format("The required field(s) %s in SettleClause is not found in the empty JSON string", SettleClause.openapiRequiredFields.toString()));
        }
      }

      Set> entries = jsonObj.entrySet();
      // check to see if the JSON string contains additional fields
      for (Entry entry : entries) {
        if (!SettleClause.openapiFields.contains(entry.getKey())) {
          throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `SettleClause` properties. JSON: %s", entry.getKey(), jsonObj.toString()));
        }
      }
      if (jsonObj.get("amount") != null && !jsonObj.get("amount").isJsonPrimitive()) {
        throw new IllegalArgumentException(String.format("Expected the field `amount` to be a primitive type in the JSON string but got `%s`", jsonObj.get("amount").toString()));
      }
      if (jsonObj.get("currency") != null && !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("settle_account_entity") != null && !jsonObj.get("settle_account_entity").isJsonPrimitive()) {
        throw new IllegalArgumentException(String.format("Expected the field `settle_account_entity` to be a primitive type in the JSON string but got `%s`", jsonObj.get("settle_account_entity").toString()));
      }
      if (jsonObj.get("settle_account_id") != null && !jsonObj.get("settle_account_id").isJsonPrimitive()) {
        throw new IllegalArgumentException(String.format("Expected the field `settle_account_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("settle_account_id").toString()));
      }
      if (jsonObj.get("settle_account_id_type") != null && !jsonObj.get("settle_account_id_type").isJsonPrimitive()) {
        throw new IllegalArgumentException(String.format("Expected the field `settle_account_id_type` to be a primitive type in the JSON string but got `%s`", jsonObj.get("settle_account_id_type").toString()));
      }
      if (jsonObj.get("settle_account_type") != null && !jsonObj.get("settle_account_type").isJsonPrimitive()) {
        throw new IllegalArgumentException(String.format("Expected the field `settle_account_type` to be a primitive type in the JSON string but got `%s`", jsonObj.get("settle_account_type").toString()));
      }
      if (jsonObj.get("settle_entity_id") != null && !jsonObj.get("settle_entity_id").isJsonPrimitive()) {
        throw new IllegalArgumentException(String.format("Expected the field `settle_entity_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("settle_entity_id").toString()));
      }
      if (jsonObj.get("settle_entity_type") != null && !jsonObj.get("settle_entity_type").isJsonPrimitive()) {
        throw new IllegalArgumentException(String.format("Expected the field `settle_entity_type` to be a primitive type in the JSON string but got `%s`", jsonObj.get("settle_entity_type").toString()));
      }
      // validate the optional field `sub_merchant`
      if (jsonObj.getAsJsonObject("sub_merchant") != null) {
        SubMerchant.validateJsonObject(jsonObj.getAsJsonObject("sub_merchant"));
      }
  }

  public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
    @SuppressWarnings("unchecked")
    @Override
    public  TypeAdapter create(Gson gson, TypeToken type) {
       if (!SettleClause.class.isAssignableFrom(type.getRawType())) {
         return null; // this class only serializes 'SettleClause' and its subtypes
       }
       final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
       final TypeAdapter thisAdapter
                        = gson.getDelegateAdapter(this, TypeToken.get(SettleClause.class));

       return (TypeAdapter) new TypeAdapter() {
           @Override
           public void write(JsonWriter out, SettleClause value) throws IOException {
             JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
             elementAdapter.write(out, obj);
           }

           @Override
           public SettleClause read(JsonReader in) throws IOException {
             JsonObject jsonObj = elementAdapter.read(in).getAsJsonObject();
             validateJsonObject(jsonObj);
             return thisAdapter.fromJsonTree(jsonObj);
           }

       }.nullSafe();
    }
  }

 /**
  * Create an instance of SettleClause given an JSON string
  *
  * @param jsonString JSON string
  * @return An instance of SettleClause
  * @throws IOException if the JSON string is invalid with respect to SettleClause
  */
  public static SettleClause fromJson(String jsonString) throws IOException {
    return JSON.getGson().fromJson(jsonString, SettleClause.class);
  }

 /**
  * Convert an instance of SettleClause to an JSON string
  *
  * @return JSON string
  */
  public String toJson() {
    return JSON.getGson().toJson(this);
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy