com.adyen.model.marketpay.AccountStateRequirement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
/*
* ######
* ######
* ############ ####( ###### #####. ###### ############ ############
* ############# #####( ###### #####. ###### ############# #############
* ###### #####( ###### #####. ###### ##### ###### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ######
* ############# ############# ############# ############# ##### ######
* ############ ############ ############# ############ ##### ######
* ######
* #############
* ############
*
* Adyen Java API Library
*
* Copyright (c) 2017 Adyen B.V.
* This file is open source and available under the MIT license.
* See the LICENSE file for more info.
*/
package com.adyen.model.marketpay;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import com.google.gson.annotations.SerializedName;
/**
* AccountStateRequirement
*/
public class AccountStateRequirement {
@SerializedName("requiredFields")
private List requiredFields = new ArrayList();
@SerializedName("state")
private AccountState state = null;
public AccountStateRequirement requiredFields(List requiredFields) {
this.requiredFields = requiredFields;
return this;
}
public AccountStateRequirement addRequiredFieldsItem(FieldType requiredFieldsItem) {
this.requiredFields.add(requiredFieldsItem);
return this;
}
/**
* properties that need to be provided for the account holder to reach the next processing state
*
* @return requiredFields
**/
public List getRequiredFields() {
return requiredFields;
}
public void setRequiredFields(List requiredFields) {
this.requiredFields = requiredFields;
}
public AccountStateRequirement state(AccountState state) {
this.state = state;
return this;
}
/**
* the processing state that can be reached if the given properties are provided
*
* @return state
**/
public AccountState getState() {
return state;
}
public void setState(AccountState state) {
this.state = state;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AccountStateRequirement accountStateRequirement = (AccountStateRequirement) o;
return Objects.equals(this.requiredFields, accountStateRequirement.requiredFields) && Objects.equals(this.state, accountStateRequirement.state);
}
@Override
public int hashCode() {
return Objects.hash(requiredFields, state);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccountStateRequirement {\n");
sb.append(" requiredFields: ").append(toIndentedString(requiredFields)).append("\n");
sb.append(" state: ").append(toIndentedString(state)).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 ");
}
}