uk.org.openbanking.datamodel.account.OBStatementInterest2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openbanking-sdk Show documentation
Show all versions of openbanking-sdk Show documentation
A Java SDK to help implementing the Open Banking standard : https://www.openbanking.org.uk/read-write-apis/
/**
*
* The contents of this file are subject to the terms of the Common Development and
* Distribution License (the License). You may not use this file except in compliance with the
* License.
*
* You can obtain a copy of the License at https://forgerock.org/cddlv1-0/. See the License for the
* specific language governing permission and limitations under the License.
*
* When distributing Covered Software, include this CDDL Header Notice in each file and include
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
* Header, with the fields enclosed by brackets [] replaced by your own identifying
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2019 ForgeRock AS.
*/
/*
* Account and Transaction API Specification
* Swagger for Account and Transaction API Specification
*
* OpenAPI spec version: v3.1.1
* 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 uk.org.openbanking.datamodel.account;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import java.math.BigDecimal;
import java.util.Objects;
/**
* Set of elements used to provide details of a generic interest amount related to the statement resource.
*/
@ApiModel(description = "Set of elements used to provide details of a generic interest amount related to the statement resource.")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-05-23T11:27:41.089+01:00")
public class OBStatementInterest2 {
@JsonProperty("Description")
private String description = null;
@JsonProperty("CreditDebitIndicator")
private CreditDebitIndicatorEnum creditDebitIndicator = null;
@JsonProperty("Type")
private String type = null;
@JsonProperty("Rate")
private BigDecimal rate = null;
@JsonProperty("RateType")
private String rateType = null;
@JsonProperty("Frequency")
private String frequency = null;
@JsonProperty("Amount")
private OBActiveOrHistoricCurrencyAndAmount amount = null;
public OBStatementInterest2 description(String description) {
this.description = description;
return this;
}
/**
* Description that may be available for the statement interest.
*
* @return description
**/
@Size(min = 1, max = 128)
@ApiModelProperty(value = "Description that may be available for the statement interest.")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public OBStatementInterest2 creditDebitIndicator(CreditDebitIndicatorEnum creditDebitIndicator) {
this.creditDebitIndicator = creditDebitIndicator;
return this;
}
/**
* Indicates whether the amount is a credit or a debit. Usage: A zero amount is considered to be a credit amount.
*
* @return creditDebitIndicator
**/
@NotNull
@ApiModelProperty(required = true, value = "Indicates whether the amount is a credit or a debit. Usage: A zero amount is considered to be a credit amount.")
public CreditDebitIndicatorEnum getCreditDebitIndicator() {
return creditDebitIndicator;
}
public void setCreditDebitIndicator(CreditDebitIndicatorEnum creditDebitIndicator) {
this.creditDebitIndicator = creditDebitIndicator;
}
public OBStatementInterest2 type(String type) {
this.type = type;
return this;
}
/**
* Get type
*
* @return type
**/
@NotNull
@Size(min = 1, max = 40)
@ApiModelProperty(required = true, value = "")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public OBStatementInterest2 rate(BigDecimal rate) {
this.rate = rate;
return this;
}
/**
* field representing a percentage (e.g. 0.05 represents 5% and 0.9525 represents 95.25%). Note the number of decimal places may vary.
*
* @return rate
**/
@Valid
@ApiModelProperty(value = "field representing a percentage (e.g. 0.05 represents 5% and 0.9525 represents 95.25%). Note the number of decimal places may vary.")
public BigDecimal getRate() {
return rate;
}
public void setRate(BigDecimal rate) {
this.rate = rate;
}
public OBStatementInterest2 rateType(String rateType) {
this.rateType = rateType;
return this;
}
/**
* Get rateType
*
* @return rateType
**/
@ApiModelProperty(value = "")
public String getRateType() {
return rateType;
}
public void setRateType(String rateType) {
this.rateType = rateType;
}
public OBStatementInterest2 frequency(String frequency) {
this.frequency = frequency;
return this;
}
/**
* Get frequency
*
* @return frequency
**/
@Size(min = 1, max = 40)
@ApiModelProperty(value = "")
public String getFrequency() {
return frequency;
}
public void setFrequency(String frequency) {
this.frequency = frequency;
}
public OBStatementInterest2 amount(OBActiveOrHistoricCurrencyAndAmount amount) {
this.amount = amount;
return this;
}
/**
* Get amount
*
* @return amount
**/
@NotNull
@Valid
@ApiModelProperty(required = true, value = "")
public OBActiveOrHistoricCurrencyAndAmount getAmount() {
return amount;
}
public void setAmount(OBActiveOrHistoricCurrencyAndAmount amount) {
this.amount = amount;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OBStatementInterest2 obStatementInterest2 = (OBStatementInterest2) o;
return Objects.equals(this.description, obStatementInterest2.description) &&
Objects.equals(this.creditDebitIndicator, obStatementInterest2.creditDebitIndicator) &&
Objects.equals(this.type, obStatementInterest2.type) &&
Objects.equals(this.rate, obStatementInterest2.rate) &&
Objects.equals(this.rateType, obStatementInterest2.rateType) &&
Objects.equals(this.frequency, obStatementInterest2.frequency) &&
Objects.equals(this.amount, obStatementInterest2.amount);
}
@Override
public int hashCode() {
return Objects.hash(description, creditDebitIndicator, type, rate, rateType, frequency, amount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OBStatementInterest2 {\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" creditDebitIndicator: ").append(toIndentedString(creditDebitIndicator)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" rate: ").append(toIndentedString(rate)).append("\n");
sb.append(" rateType: ").append(toIndentedString(rateType)).append("\n");
sb.append(" frequency: ").append(toIndentedString(frequency)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).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 ");
}
/**
* Indicates whether the amount is a credit or a debit. Usage: A zero amount is considered to be a credit amount.
*/
public enum CreditDebitIndicatorEnum {
CREDIT("Credit"),
DEBIT("Debit");
private String value;
CreditDebitIndicatorEnum(String value) {
this.value = value;
}
@JsonCreator
public static CreditDebitIndicatorEnum fromValue(String text) {
for (CreditDebitIndicatorEnum b : CreditDebitIndicatorEnum.values()) {
if (String.valueOf(b.value).equals(text)) {
return b;
}
}
return null;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
}
}