
io.electrum.cardaccount.model.AccountStatementRequest Maven / Gradle / Ivy
The newest version!
/*
* Electrum Gateway Card-Account API
* The Electrum Gateway Card-Account API defines an interface for card and account management.
*
* OpenAPI spec version: 0.0.600
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.electrum.cardaccount.model;
import javax.validation.constraints.NotNull;
import org.joda.time.DateTime;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.electrum.vas.Utils;
import io.electrum.vas.model.Transaction;
import io.swagger.annotations.ApiModelProperty;
/**
* AccountStatementRequest
*/
public class AccountStatementRequest extends Transaction {
@JsonProperty("account")
private Account account;
@JsonProperty("issuerId")
private String issuerId = null;
@JsonProperty("beginDate")
private DateTime beginDate = null;
@JsonProperty("endDate")
private DateTime endDate = null;
public AccountStatementRequest account(Account account) {
this.account = account;
return this;
}
/**
* Get account
*
* @return account
**/
@JsonProperty("account")
@ApiModelProperty(required = true, value = "")
@NotNull
public Account getAccount() {
return account;
}
public void setAccount(Account account) {
this.account = account;
}
public AccountStatementRequest issuerId(String issuerId) {
this.issuerId = issuerId;
return this;
}
/**
* The issuer id.
*
* @return issuerId
**/
@JsonProperty("issuerId")
@ApiModelProperty(required = true, value = "The issuer id.")
@NotNull
public String getIssuerId() {
return issuerId;
}
public void setIssuerId(String issuerId) {
this.issuerId = issuerId;
}
public AccountStatementRequest beginDate(DateTime beginDate) {
this.beginDate = beginDate;
return this;
}
/**
* The start date of the statement. The format shall be as defined for date-time in [RFC 3339 section
* 5.6](https://tools.ietf.org/html/rfc3339#section-5.6).
*
* @return beginDate
**/
@JsonProperty("beginDate")
@ApiModelProperty(required = true, value = "The start date of the statement. The format shall be as defined for date-time in [RFC 3339 section 5.6](https://tools.ietf.org/html/rfc3339#section-5.6).")
@NotNull
public DateTime getBeginDate() {
return beginDate;
}
public void setBeginDate(DateTime beginDate) {
this.beginDate = beginDate;
}
public AccountStatementRequest endDate(DateTime endDate) {
this.endDate = endDate;
return this;
}
/**
* The end date of the statement. The format shall be as defined for date-time in [RFC 3339 section
* 5.6](https://tools.ietf.org/html/rfc3339#section-5.6).
*
* @return endDate
**/
@JsonProperty("endDate")
@ApiModelProperty(required = true, value = "The end date of the statement. The format shall be as defined for date-time in [RFC 3339 section 5.6](https://tools.ietf.org/html/rfc3339#section-5.6).")
@NotNull
public DateTime getEndDate() {
return endDate;
}
public void setEndDate(DateTime endDate) {
this.endDate = endDate;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccountStatementRequest {\n");
sb.append(" id: ").append(Utils.toIndentedString(id)).append("\n");
sb.append(" account: ").append(Utils.toIndentedString(account)).append("\n");
sb.append(" issuerId: ").append(Utils.toIndentedString(issuerId)).append("\n");
sb.append(" beginDate: ").append(Utils.toIndentedString(beginDate)).append("\n");
sb.append(" endDate: ").append(Utils.toIndentedString(endDate)).append("\n");
sb.append(" originator: ").append(Utils.toIndentedString(originator)).append("\n");
sb.append(" client: ").append(Utils.toIndentedString(client)).append("\n");
sb.append(" receiver: ").append(Utils.toIndentedString(receiver)).append("\n");
sb.append(" thirdPartyIdentifiers: ").append(Utils.toIndentedString(thirdPartyIdentifiers)).append("\n");
sb.append(" time: ").append(Utils.toIndentedString(time)).append("\n");
sb.append("}");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy