uk.org.openbanking.datamodel.account.OBLoanInterestFeesChargeDetail1 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.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
/**
* Other fees/charges details
*/
@ApiModel(description = "Other fees/charges details")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-05-23T11:27:41.089+01:00")
public class OBLoanInterestFeesChargeDetail1 {
@JsonProperty("FeeType")
private OBFeeType1Code feeType = null;
@JsonProperty("NegotiableIndicator")
private Boolean negotiableIndicator = null;
@JsonProperty("FeeAmount")
private BigDecimal feeAmount = null;
@JsonProperty("FeeRate")
private BigDecimal feeRate = null;
@JsonProperty("FeeRateType")
private OBInterestRateType1Code feeRateType = null;
@JsonProperty("ApplicationFrequency")
private OBFeeFrequency1Code applicationFrequency = null;
@JsonProperty("CalculationFrequency")
private OBFeeFrequency1Code calculationFrequency = null;
@JsonProperty("Notes")
private List notes = null;
@JsonProperty("OtherFeeType")
private OBOtherFeeChargeDetailType otherFeeType = null;
@JsonProperty("OtherFeeRateType")
private OBOtherCodeType1 otherFeeRateType = null;
@JsonProperty("OtherApplicationFrequency")
private OBOtherCodeType1 otherApplicationFrequency = null;
@JsonProperty("OtherCalculationFrequency")
private OBOtherCodeType1 otherCalculationFrequency = null;
public OBLoanInterestFeesChargeDetail1 feeType(OBFeeType1Code feeType) {
this.feeType = feeType;
return this;
}
/**
* Get feeType
*
* @return feeType
**/
@NotNull
@Valid
@ApiModelProperty(required = true, value = "")
public OBFeeType1Code getFeeType() {
return feeType;
}
public void setFeeType(OBFeeType1Code feeType) {
this.feeType = feeType;
}
public OBLoanInterestFeesChargeDetail1 negotiableIndicator(Boolean negotiableIndicator) {
this.negotiableIndicator = negotiableIndicator;
return this;
}
/**
* Fee/charge which is usually negotiable rather than a fixed amount
*
* @return negotiableIndicator
**/
@ApiModelProperty(value = "Fee/charge which is usually negotiable rather than a fixed amount")
public Boolean isNegotiableIndicator() {
return negotiableIndicator;
}
public void setNegotiableIndicator(Boolean negotiableIndicator) {
this.negotiableIndicator = negotiableIndicator;
}
public OBLoanInterestFeesChargeDetail1 feeAmount(BigDecimal feeAmount) {
this.feeAmount = feeAmount;
return this;
}
/**
* Fee Amount charged for a fee/charge (where it is charged in terms of an amount rather than a rate)
*
* @return feeAmount
**/
@Valid
@ApiModelProperty(value = "Fee Amount charged for a fee/charge (where it is charged in terms of an amount rather than a rate)")
public BigDecimal getFeeAmount() {
return feeAmount;
}
public void setFeeAmount(BigDecimal feeAmount) {
this.feeAmount = feeAmount;
}
public OBLoanInterestFeesChargeDetail1 feeRate(BigDecimal feeRate) {
this.feeRate = feeRate;
return this;
}
/**
* Fee Amount charged for a fee/charge (where it is charged in terms of an amount rather than a rate)
*
* @return feeRate
**/
@Valid
@ApiModelProperty(value = "Fee Amount charged for a fee/charge (where it is charged in terms of an amount rather than a rate)")
public BigDecimal getFeeRate() {
return feeRate;
}
public void setFeeRate(BigDecimal feeRate) {
this.feeRate = feeRate;
}
public OBLoanInterestFeesChargeDetail1 feeRateType(OBInterestRateType1Code feeRateType) {
this.feeRateType = feeRateType;
return this;
}
/**
* Get feeRateType
*
* @return feeRateType
**/
@Valid
@ApiModelProperty(value = "")
public OBInterestRateType1Code getFeeRateType() {
return feeRateType;
}
public void setFeeRateType(OBInterestRateType1Code feeRateType) {
this.feeRateType = feeRateType;
}
public OBLoanInterestFeesChargeDetail1 applicationFrequency(OBFeeFrequency1Code applicationFrequency) {
this.applicationFrequency = applicationFrequency;
return this;
}
/**
* Get applicationFrequency
*
* @return applicationFrequency
**/
@NotNull
@Valid
@ApiModelProperty(required = true, value = "")
public OBFeeFrequency1Code getApplicationFrequency() {
return applicationFrequency;
}
public void setApplicationFrequency(OBFeeFrequency1Code applicationFrequency) {
this.applicationFrequency = applicationFrequency;
}
public OBLoanInterestFeesChargeDetail1 calculationFrequency(OBFeeFrequency1Code calculationFrequency) {
this.calculationFrequency = calculationFrequency;
return this;
}
/**
* Get calculationFrequency
*
* @return calculationFrequency
**/
@NotNull
@Valid
@ApiModelProperty(required = true, value = "")
public OBFeeFrequency1Code getCalculationFrequency() {
return calculationFrequency;
}
public void setCalculationFrequency(OBFeeFrequency1Code calculationFrequency) {
this.calculationFrequency = calculationFrequency;
}
public OBLoanInterestFeesChargeDetail1 notes(List notes) {
this.notes = notes;
return this;
}
public OBLoanInterestFeesChargeDetail1 addNotesItem(String notesItem) {
if (this.notes == null) {
this.notes = new ArrayList();
}
this.notes.add(notesItem);
return this;
}
/**
* Optional additional notes to supplement the fee/charge details.
*
* @return notes
**/
@ApiModelProperty(value = "Optional additional notes to supplement the fee/charge details.")
public List getNotes() {
return notes;
}
public void setNotes(List notes) {
this.notes = notes;
}
public OBLoanInterestFeesChargeDetail1 otherFeeType(OBOtherFeeChargeDetailType otherFeeType) {
this.otherFeeType = otherFeeType;
return this;
}
/**
* Get otherFeeType
*
* @return otherFeeType
**/
@Valid
@ApiModelProperty(value = "")
public OBOtherFeeChargeDetailType getOtherFeeType() {
return otherFeeType;
}
public void setOtherFeeType(OBOtherFeeChargeDetailType otherFeeType) {
this.otherFeeType = otherFeeType;
}
public OBLoanInterestFeesChargeDetail1 otherFeeRateType(OBOtherCodeType1 otherFeeRateType) {
this.otherFeeRateType = otherFeeRateType;
return this;
}
/**
* Get otherFeeRateType
*
* @return otherFeeRateType
**/
@Valid
@ApiModelProperty(value = "")
public OBOtherCodeType1 getOtherFeeRateType() {
return otherFeeRateType;
}
public void setOtherFeeRateType(OBOtherCodeType1 otherFeeRateType) {
this.otherFeeRateType = otherFeeRateType;
}
public OBLoanInterestFeesChargeDetail1 otherApplicationFrequency(OBOtherCodeType1 otherApplicationFrequency) {
this.otherApplicationFrequency = otherApplicationFrequency;
return this;
}
/**
* Get otherApplicationFrequency
*
* @return otherApplicationFrequency
**/
@Valid
@ApiModelProperty(value = "")
public OBOtherCodeType1 getOtherApplicationFrequency() {
return otherApplicationFrequency;
}
public void setOtherApplicationFrequency(OBOtherCodeType1 otherApplicationFrequency) {
this.otherApplicationFrequency = otherApplicationFrequency;
}
public OBLoanInterestFeesChargeDetail1 otherCalculationFrequency(OBOtherCodeType1 otherCalculationFrequency) {
this.otherCalculationFrequency = otherCalculationFrequency;
return this;
}
/**
* Get otherCalculationFrequency
*
* @return otherCalculationFrequency
**/
@Valid
@ApiModelProperty(value = "")
public OBOtherCodeType1 getOtherCalculationFrequency() {
return otherCalculationFrequency;
}
public void setOtherCalculationFrequency(OBOtherCodeType1 otherCalculationFrequency) {
this.otherCalculationFrequency = otherCalculationFrequency;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OBLoanInterestFeesChargeDetail1 obLoanInterestFeesChargeDetail1 = (OBLoanInterestFeesChargeDetail1) o;
return Objects.equals(this.feeType, obLoanInterestFeesChargeDetail1.feeType) &&
Objects.equals(this.negotiableIndicator, obLoanInterestFeesChargeDetail1.negotiableIndicator) &&
Objects.equals(this.feeAmount, obLoanInterestFeesChargeDetail1.feeAmount) &&
Objects.equals(this.feeRate, obLoanInterestFeesChargeDetail1.feeRate) &&
Objects.equals(this.feeRateType, obLoanInterestFeesChargeDetail1.feeRateType) &&
Objects.equals(this.applicationFrequency, obLoanInterestFeesChargeDetail1.applicationFrequency) &&
Objects.equals(this.calculationFrequency, obLoanInterestFeesChargeDetail1.calculationFrequency) &&
Objects.equals(this.notes, obLoanInterestFeesChargeDetail1.notes) &&
Objects.equals(this.otherFeeType, obLoanInterestFeesChargeDetail1.otherFeeType) &&
Objects.equals(this.otherFeeRateType, obLoanInterestFeesChargeDetail1.otherFeeRateType) &&
Objects.equals(this.otherApplicationFrequency, obLoanInterestFeesChargeDetail1.otherApplicationFrequency) &&
Objects.equals(this.otherCalculationFrequency, obLoanInterestFeesChargeDetail1.otherCalculationFrequency);
}
@Override
public int hashCode() {
return Objects.hash(feeType, negotiableIndicator, feeAmount, feeRate, feeRateType, applicationFrequency, calculationFrequency, notes, otherFeeType, otherFeeRateType, otherApplicationFrequency, otherCalculationFrequency);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OBLoanInterestFeesChargeDetail1 {\n");
sb.append(" feeType: ").append(toIndentedString(feeType)).append("\n");
sb.append(" negotiableIndicator: ").append(toIndentedString(negotiableIndicator)).append("\n");
sb.append(" feeAmount: ").append(toIndentedString(feeAmount)).append("\n");
sb.append(" feeRate: ").append(toIndentedString(feeRate)).append("\n");
sb.append(" feeRateType: ").append(toIndentedString(feeRateType)).append("\n");
sb.append(" applicationFrequency: ").append(toIndentedString(applicationFrequency)).append("\n");
sb.append(" calculationFrequency: ").append(toIndentedString(calculationFrequency)).append("\n");
sb.append(" notes: ").append(toIndentedString(notes)).append("\n");
sb.append(" otherFeeType: ").append(toIndentedString(otherFeeType)).append("\n");
sb.append(" otherFeeRateType: ").append(toIndentedString(otherFeeRateType)).append("\n");
sb.append(" otherApplicationFrequency: ").append(toIndentedString(otherApplicationFrequency)).append("\n");
sb.append(" otherCalculationFrequency: ").append(toIndentedString(otherCalculationFrequency)).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 ");
}
}