Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* ShellCardManagementAPIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
package com.shell.apitest.models;
import com.fasterxml.jackson.annotation.JsonGetter;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonSetter;
import java.util.List;
/**
* This is a model class for DeliveryAddressUpdateRequest type.
*/
public class DeliveryAddressUpdateRequest {
private Integer colCoId;
private Integer colCoCode;
private Integer payerId;
private String payerNumber;
private Integer accountId;
private String accountNumber;
private List deliveryAddressUpdates;
/**
* Default constructor.
*/
public DeliveryAddressUpdateRequest() {
}
/**
* Initialization constructor.
* @param colCoId Integer value for colCoId.
* @param colCoCode Integer value for colCoCode.
* @param payerId Integer value for payerId.
* @param payerNumber String value for payerNumber.
* @param accountId Integer value for accountId.
* @param accountNumber String value for accountNumber.
* @param deliveryAddressUpdates List of DeliveryAddressUpdate value for
* deliveryAddressUpdates.
*/
public DeliveryAddressUpdateRequest(
Integer colCoId,
Integer colCoCode,
Integer payerId,
String payerNumber,
Integer accountId,
String accountNumber,
List deliveryAddressUpdates) {
this.colCoId = colCoId;
this.colCoCode = colCoCode;
this.payerId = payerId;
this.payerNumber = payerNumber;
this.accountId = accountId;
this.accountNumber = accountNumber;
this.deliveryAddressUpdates = deliveryAddressUpdates;
}
/**
* Getter for ColCoId.
* Collecting Company Id of the selected payer. Optional if ColCoCode is passed else Mandatory.
* @return Returns the Integer
*/
@JsonGetter("ColCoId")
@JsonInclude(JsonInclude.Include.NON_NULL)
public Integer getColCoId() {
return colCoId;
}
/**
* Setter for ColCoId.
* Collecting Company Id of the selected payer. Optional if ColCoCode is passed else Mandatory.
* @param colCoId Value for Integer
*/
@JsonSetter("ColCoId")
public void setColCoId(Integer colCoId) {
this.colCoId = colCoId;
}
/**
* Getter for ColCoCode.
* Collecting Company Code (Shell Code) of the selected payer. Mandatory for serviced OUs such
* as Romania, Latvia, Lithuania, Estonia, Ukraine etc. It is optional for other countries if
* ColCoID is provided.
* @return Returns the Integer
*/
@JsonGetter("ColCoCode")
@JsonInclude(JsonInclude.Include.NON_NULL)
public Integer getColCoCode() {
return colCoCode;
}
/**
* Setter for ColCoCode.
* Collecting Company Code (Shell Code) of the selected payer. Mandatory for serviced OUs such
* as Romania, Latvia, Lithuania, Estonia, Ukraine etc. It is optional for other countries if
* ColCoID is provided.
* @param colCoCode Value for Integer
*/
@JsonSetter("ColCoCode")
public void setColCoCode(Integer colCoCode) {
this.colCoCode = colCoCode;
}
/**
* Getter for PayerId.
* Payer Id (i.e. Customer Id of the Payment Customer) of the selected payer. Optional if
* PayerNumber is passed else Mandatory
* @return Returns the Integer
*/
@JsonGetter("PayerId")
@JsonInclude(JsonInclude.Include.NON_NULL)
public Integer getPayerId() {
return payerId;
}
/**
* Setter for PayerId.
* Payer Id (i.e. Customer Id of the Payment Customer) of the selected payer. Optional if
* PayerNumber is passed else Mandatory
* @param payerId Value for Integer
*/
@JsonSetter("PayerId")
public void setPayerId(Integer payerId) {
this.payerId = payerId;
}
/**
* Getter for PayerNumber.
* Payer Number (Ex: GB000000123) of the selected payer. Optional if PayerId is passed else
* Mandatory
* @return Returns the String
*/
@JsonGetter("PayerNumber")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getPayerNumber() {
return payerNumber;
}
/**
* Setter for PayerNumber.
* Payer Number (Ex: GB000000123) of the selected payer. Optional if PayerId is passed else
* Mandatory
* @param payerNumber Value for String
*/
@JsonSetter("PayerNumber")
public void setPayerNumber(String payerNumber) {
this.payerNumber = payerNumber;
}
/**
* Getter for AccountId.
* Account ID of the customer. Optional if AccountNumber is passed, else mandatory.
* @return Returns the Integer
*/
@JsonGetter("AccountId")
@JsonInclude(JsonInclude.Include.NON_NULL)
public Integer getAccountId() {
return accountId;
}
/**
* Setter for AccountId.
* Account ID of the customer. Optional if AccountNumber is passed, else mandatory.
* @param accountId Value for Integer
*/
@JsonSetter("AccountId")
public void setAccountId(Integer accountId) {
this.accountId = accountId;
}
/**
* Getter for AccountNumber.
* Account Number of the customer. Optional if AccountId is passed, else mandatory. This input
* is a search criterion, if given.
* @return Returns the String
*/
@JsonGetter("AccountNumber")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getAccountNumber() {
return accountNumber;
}
/**
* Setter for AccountNumber.
* Account Number of the customer. Optional if AccountId is passed, else mandatory. This input
* is a search criterion, if given.
* @param accountNumber Value for String
*/
@JsonSetter("AccountNumber")
public void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber;
}
/**
* Getter for DeliveryAddressUpdates.
* @return Returns the List of DeliveryAddressUpdate
*/
@JsonGetter("DeliveryAddressUpdates")
@JsonInclude(JsonInclude.Include.NON_NULL)
public List getDeliveryAddressUpdates() {
return deliveryAddressUpdates;
}
/**
* Setter for DeliveryAddressUpdates.
* @param deliveryAddressUpdates Value for List of DeliveryAddressUpdate
*/
@JsonSetter("DeliveryAddressUpdates")
public void setDeliveryAddressUpdates(List deliveryAddressUpdates) {
this.deliveryAddressUpdates = deliveryAddressUpdates;
}
/**
* Converts this DeliveryAddressUpdateRequest into string format.
* @return String representation of this class
*/
@Override
public String toString() {
return "DeliveryAddressUpdateRequest [" + "colCoId=" + colCoId + ", colCoCode=" + colCoCode
+ ", payerId=" + payerId + ", payerNumber=" + payerNumber + ", accountId="
+ accountId + ", accountNumber=" + accountNumber + ", deliveryAddressUpdates="
+ deliveryAddressUpdates + "]";
}
/**
* Builds a new {@link DeliveryAddressUpdateRequest.Builder} object.
* Creates the instance with the state of the current model.
* @return a new {@link DeliveryAddressUpdateRequest.Builder} object
*/
public Builder toBuilder() {
Builder builder = new Builder()
.colCoId(getColCoId())
.colCoCode(getColCoCode())
.payerId(getPayerId())
.payerNumber(getPayerNumber())
.accountId(getAccountId())
.accountNumber(getAccountNumber())
.deliveryAddressUpdates(getDeliveryAddressUpdates());
return builder;
}
/**
* Class to build instances of {@link DeliveryAddressUpdateRequest}.
*/
public static class Builder {
private Integer colCoId;
private Integer colCoCode;
private Integer payerId;
private String payerNumber;
private Integer accountId;
private String accountNumber;
private List deliveryAddressUpdates;
/**
* Setter for colCoId.
* @param colCoId Integer value for colCoId.
* @return Builder
*/
public Builder colCoId(Integer colCoId) {
this.colCoId = colCoId;
return this;
}
/**
* Setter for colCoCode.
* @param colCoCode Integer value for colCoCode.
* @return Builder
*/
public Builder colCoCode(Integer colCoCode) {
this.colCoCode = colCoCode;
return this;
}
/**
* Setter for payerId.
* @param payerId Integer value for payerId.
* @return Builder
*/
public Builder payerId(Integer payerId) {
this.payerId = payerId;
return this;
}
/**
* Setter for payerNumber.
* @param payerNumber String value for payerNumber.
* @return Builder
*/
public Builder payerNumber(String payerNumber) {
this.payerNumber = payerNumber;
return this;
}
/**
* Setter for accountId.
* @param accountId Integer value for accountId.
* @return Builder
*/
public Builder accountId(Integer accountId) {
this.accountId = accountId;
return this;
}
/**
* Setter for accountNumber.
* @param accountNumber String value for accountNumber.
* @return Builder
*/
public Builder accountNumber(String accountNumber) {
this.accountNumber = accountNumber;
return this;
}
/**
* Setter for deliveryAddressUpdates.
* @param deliveryAddressUpdates List of DeliveryAddressUpdate value for
* deliveryAddressUpdates.
* @return Builder
*/
public Builder deliveryAddressUpdates(
List deliveryAddressUpdates) {
this.deliveryAddressUpdates = deliveryAddressUpdates;
return this;
}
/**
* Builds a new {@link DeliveryAddressUpdateRequest} object using the set fields.
* @return {@link DeliveryAddressUpdateRequest}
*/
public DeliveryAddressUpdateRequest build() {
return new DeliveryAddressUpdateRequest(colCoId, colCoCode, payerId, payerNumber,
accountId, accountNumber, deliveryAddressUpdates);
}
}
}