All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
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.
com.shell.apitest.models.SummaryofbundleResponse Maven / Gradle / Ivy
/*
* 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 com.fasterxml.jackson.databind.annotation.JsonSerialize;
import io.apimatic.core.types.OptionalNullable;
/**
* This is a model class for SummaryofbundleResponse type.
*/
public class SummaryofbundleResponse {
private OptionalNullable requestId;
private Integer payerId;
private String payerNumber;
private Integer accountId;
private String accountNumber;
private Integer countOfCardsNotInBundle;
private CardBundle cardBundles;
private ErrorStatus error;
/**
* Default constructor.
*/
public SummaryofbundleResponse() {
}
/**
* Initialization constructor.
* @param requestId String value for requestId.
* @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 countOfCardsNotInBundle Integer value for countOfCardsNotInBundle.
* @param cardBundles CardBundle value for cardBundles.
* @param error ErrorStatus value for error.
*/
public SummaryofbundleResponse(
String requestId,
Integer payerId,
String payerNumber,
Integer accountId,
String accountNumber,
Integer countOfCardsNotInBundle,
CardBundle cardBundles,
ErrorStatus error) {
this.requestId = OptionalNullable.of(requestId);
this.payerId = payerId;
this.payerNumber = payerNumber;
this.accountId = accountId;
this.accountNumber = accountNumber;
this.countOfCardsNotInBundle = countOfCardsNotInBundle;
this.cardBundles = cardBundles;
this.error = error;
}
/**
* Initialization constructor.
* @param requestId String value for requestId.
* @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 countOfCardsNotInBundle Integer value for countOfCardsNotInBundle.
* @param cardBundles CardBundle value for cardBundles.
* @param error ErrorStatus value for error.
*/
protected SummaryofbundleResponse(OptionalNullable requestId, Integer payerId,
String payerNumber, Integer accountId, String accountNumber,
Integer countOfCardsNotInBundle, CardBundle cardBundles, ErrorStatus error) {
this.requestId = requestId;
this.payerId = payerId;
this.payerNumber = payerNumber;
this.accountId = accountId;
this.accountNumber = accountNumber;
this.countOfCardsNotInBundle = countOfCardsNotInBundle;
this.cardBundles = cardBundles;
this.error = error;
}
/**
* Internal Getter for RequestId.
* Request Id of the API call
* @return Returns the Internal String
*/
@JsonGetter("RequestId")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonSerialize(using = OptionalNullable.Serializer.class)
protected OptionalNullable internalGetRequestId() {
return this.requestId;
}
/**
* Getter for RequestId.
* Request Id of the API call
* @return Returns the String
*/
public String getRequestId() {
return OptionalNullable.getFrom(requestId);
}
/**
* Setter for RequestId.
* Request Id of the API call
* @param requestId Value for String
*/
@JsonSetter("RequestId")
public void setRequestId(String requestId) {
this.requestId = OptionalNullable.of(requestId);
}
/**
* UnSetter for RequestId.
* Request Id of the API call
*/
public void unsetRequestId() {
requestId = null;
}
/**
* Getter for PayerId.
* Payer Id of the bundles and cards. Example: 123456
* @return Returns the Integer
*/
@JsonGetter("PayerId")
@JsonInclude(JsonInclude.Include.NON_NULL)
public Integer getPayerId() {
return payerId;
}
/**
* Setter for PayerId.
* Payer Id of the bundles and cards. Example: 123456
* @param payerId Value for Integer
*/
@JsonSetter("PayerId")
public void setPayerId(Integer payerId) {
this.payerId = payerId;
}
/**
* Getter for PayerNumber.
* Payer Number of the bundles and cards. Example: GB000000123
* @return Returns the String
*/
@JsonGetter("PayerNumber")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getPayerNumber() {
return payerNumber;
}
/**
* Setter for PayerNumber.
* Payer Number of the bundles and cards. Example: GB000000123
* @param payerNumber Value for String
*/
@JsonSetter("PayerNumber")
public void setPayerNumber(String payerNumber) {
this.payerNumber = payerNumber;
}
/**
* Getter for AccountId.
* @return Returns the Integer
*/
@JsonGetter("AccountId")
@JsonInclude(JsonInclude.Include.NON_NULL)
public Integer getAccountId() {
return accountId;
}
/**
* Setter for AccountId.
* @param accountId Value for Integer
*/
@JsonSetter("AccountId")
public void setAccountId(Integer accountId) {
this.accountId = accountId;
}
/**
* Getter for AccountNumber.
* Account Number of the bundle. Example: GB000000123
* @return Returns the String
*/
@JsonGetter("AccountNumber")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getAccountNumber() {
return accountNumber;
}
/**
* Setter for AccountNumber.
* Account Number of the bundle. Example: GB000000123
* @param accountNumber Value for String
*/
@JsonSetter("AccountNumber")
public void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber;
}
/**
* Getter for CountOfCardsNotInBundle.
* Count of cards that are not part of the bundle in a given account.
* @return Returns the Integer
*/
@JsonGetter("CountOfCardsNotInBundle")
@JsonInclude(JsonInclude.Include.NON_NULL)
public Integer getCountOfCardsNotInBundle() {
return countOfCardsNotInBundle;
}
/**
* Setter for CountOfCardsNotInBundle.
* Count of cards that are not part of the bundle in a given account.
* @param countOfCardsNotInBundle Value for Integer
*/
@JsonSetter("CountOfCardsNotInBundle")
public void setCountOfCardsNotInBundle(Integer countOfCardsNotInBundle) {
this.countOfCardsNotInBundle = countOfCardsNotInBundle;
}
/**
* Getter for CardBundles.
* @return Returns the CardBundle
*/
@JsonGetter("CardBundles")
@JsonInclude(JsonInclude.Include.NON_NULL)
public CardBundle getCardBundles() {
return cardBundles;
}
/**
* Setter for CardBundles.
* @param cardBundles Value for CardBundle
*/
@JsonSetter("CardBundles")
public void setCardBundles(CardBundle cardBundles) {
this.cardBundles = cardBundles;
}
/**
* Getter for Error.
* @return Returns the ErrorStatus
*/
@JsonGetter("Error")
@JsonInclude(JsonInclude.Include.NON_NULL)
public ErrorStatus getError() {
return error;
}
/**
* Setter for Error.
* @param error Value for ErrorStatus
*/
@JsonSetter("Error")
public void setError(ErrorStatus error) {
this.error = error;
}
/**
* Converts this SummaryofbundleResponse into string format.
* @return String representation of this class
*/
@Override
public String toString() {
return "SummaryofbundleResponse [" + "requestId=" + requestId + ", payerId=" + payerId
+ ", payerNumber=" + payerNumber + ", accountId=" + accountId + ", accountNumber="
+ accountNumber + ", countOfCardsNotInBundle=" + countOfCardsNotInBundle
+ ", cardBundles=" + cardBundles + ", error=" + error + "]";
}
/**
* Builds a new {@link SummaryofbundleResponse.Builder} object.
* Creates the instance with the state of the current model.
* @return a new {@link SummaryofbundleResponse.Builder} object
*/
public Builder toBuilder() {
Builder builder = new Builder()
.payerId(getPayerId())
.payerNumber(getPayerNumber())
.accountId(getAccountId())
.accountNumber(getAccountNumber())
.countOfCardsNotInBundle(getCountOfCardsNotInBundle())
.cardBundles(getCardBundles())
.error(getError());
builder.requestId = internalGetRequestId();
return builder;
}
/**
* Class to build instances of {@link SummaryofbundleResponse}.
*/
public static class Builder {
private OptionalNullable requestId;
private Integer payerId;
private String payerNumber;
private Integer accountId;
private String accountNumber;
private Integer countOfCardsNotInBundle;
private CardBundle cardBundles;
private ErrorStatus error;
/**
* Setter for requestId.
* @param requestId String value for requestId.
* @return Builder
*/
public Builder requestId(String requestId) {
this.requestId = OptionalNullable.of(requestId);
return this;
}
/**
* UnSetter for requestId.
* @return Builder
*/
public Builder unsetRequestId() {
requestId = null;
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 countOfCardsNotInBundle.
* @param countOfCardsNotInBundle Integer value for countOfCardsNotInBundle.
* @return Builder
*/
public Builder countOfCardsNotInBundle(Integer countOfCardsNotInBundle) {
this.countOfCardsNotInBundle = countOfCardsNotInBundle;
return this;
}
/**
* Setter for cardBundles.
* @param cardBundles CardBundle value for cardBundles.
* @return Builder
*/
public Builder cardBundles(CardBundle cardBundles) {
this.cardBundles = cardBundles;
return this;
}
/**
* Setter for error.
* @param error ErrorStatus value for error.
* @return Builder
*/
public Builder error(ErrorStatus error) {
this.error = error;
return this;
}
/**
* Builds a new {@link SummaryofbundleResponse} object using the set fields.
* @return {@link SummaryofbundleResponse}
*/
public SummaryofbundleResponse build() {
return new SummaryofbundleResponse(requestId, payerId, payerNumber, accountId,
accountNumber, countOfCardsNotInBundle, cardBundles, error);
}
}
}