uk.org.openbanking.datamodel.payment.OBWriteDomesticScheduledConsent3Data 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.
*/
/*
* Payment Initiation API
* Swagger for Payment Initiation API Specification
*
* OpenAPI spec version: v3.1.2-RC1
* 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.payment;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModelProperty;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import java.util.Objects;
/**
* OBWriteDomesticScheduledConsent3Data
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-06-13T16:03:12.161+01:00")
public class OBWriteDomesticScheduledConsent3Data {
@JsonProperty("Permission")
private PermissionEnum permission = null;
@JsonProperty("Initiation")
private OBWriteDomesticScheduled2DataInitiation initiation = null;
@JsonProperty("Authorisation")
private OBWriteDomesticConsent3DataAuthorisation authorisation = null;
@JsonProperty("SCASupportData")
private OBWriteDomesticConsent3DataSCASupportData scASupportData = null;
public OBWriteDomesticScheduledConsent3Data permission(PermissionEnum permission) {
this.permission = permission;
return this;
}
/**
* Specifies the Open Banking service request types.
*
* @return permission
**/
@NotNull
@ApiModelProperty(required = true, value = "Specifies the Open Banking service request types.")
public PermissionEnum getPermission() {
return permission;
}
public void setPermission(PermissionEnum permission) {
this.permission = permission;
}
public OBWriteDomesticScheduledConsent3Data initiation(OBWriteDomesticScheduled2DataInitiation initiation) {
this.initiation = initiation;
return this;
}
/**
* Get initiation
*
* @return initiation
**/
@NotNull
@Valid
@ApiModelProperty(required = true, value = "")
public OBWriteDomesticScheduled2DataInitiation getInitiation() {
return initiation;
}
public void setInitiation(OBWriteDomesticScheduled2DataInitiation initiation) {
this.initiation = initiation;
}
public OBWriteDomesticScheduledConsent3Data authorisation(OBWriteDomesticConsent3DataAuthorisation authorisation) {
this.authorisation = authorisation;
return this;
}
/**
* Get authorisation
*
* @return authorisation
**/
@Valid
@ApiModelProperty(value = "")
public OBWriteDomesticConsent3DataAuthorisation getAuthorisation() {
return authorisation;
}
public void setAuthorisation(OBWriteDomesticConsent3DataAuthorisation authorisation) {
this.authorisation = authorisation;
}
public OBWriteDomesticScheduledConsent3Data scASupportData(OBWriteDomesticConsent3DataSCASupportData scASupportData) {
this.scASupportData = scASupportData;
return this;
}
/**
* Get scASupportData
*
* @return scASupportData
**/
@Valid
@ApiModelProperty(value = "")
public OBWriteDomesticConsent3DataSCASupportData getScASupportData() {
return scASupportData;
}
public void setScASupportData(OBWriteDomesticConsent3DataSCASupportData scASupportData) {
this.scASupportData = scASupportData;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OBWriteDomesticScheduledConsent3Data obWriteDomesticScheduledConsent3Data = (OBWriteDomesticScheduledConsent3Data) o;
return Objects.equals(this.permission, obWriteDomesticScheduledConsent3Data.permission) &&
Objects.equals(this.initiation, obWriteDomesticScheduledConsent3Data.initiation) &&
Objects.equals(this.authorisation, obWriteDomesticScheduledConsent3Data.authorisation) &&
Objects.equals(this.scASupportData, obWriteDomesticScheduledConsent3Data.scASupportData);
}
@Override
public int hashCode() {
return Objects.hash(permission, initiation, authorisation, scASupportData);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OBWriteDomesticScheduledConsent3Data {\n");
sb.append(" permission: ").append(toIndentedString(permission)).append("\n");
sb.append(" initiation: ").append(toIndentedString(initiation)).append("\n");
sb.append(" authorisation: ").append(toIndentedString(authorisation)).append("\n");
sb.append(" scASupportData: ").append(toIndentedString(scASupportData)).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 ");
}
/**
* Specifies the Open Banking service request types.
*/
public enum PermissionEnum {
CREATE("Create");
private String value;
PermissionEnum(String value) {
this.value = value;
}
@JsonCreator
public static PermissionEnum fromValue(String text) {
for (PermissionEnum b : PermissionEnum.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);
}
}
}