com.adyen.model.recurring.DisableResult 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.recurring;
import com.google.gson.annotations.SerializedName;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import static com.adyen.util.Util.toIndentedString;
/**
* DisableResult
*/
public class DisableResult {
@SerializedName("response")
private String response = null;
@SerializedName("details")
private List details = new ArrayList<>();
public DisableResult response(String response) {
this.response = response;
return this;
}
/**
* Depending on whether a specific recurring detail was in the request, result is either [detail-successfully-disabled] or [all-details-successfully-disabled]
*
* @return response
**/
public String getResponse() {
return response;
}
public void setResponse(String response) {
this.response = response;
}
public DisableResult details(List details) {
this.details = details;
return this;
}
public DisableResult addDetailsItem(RecurringDetail detailsItem) {
this.details.add(detailsItem);
return this;
}
/**
* a list of one or more recurring payment details that were disabled
*
* @return details
**/
public List getDetails() {
return details;
}
public void setDetails(List details) {
this.details = details;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DisableResult disableResult = (DisableResult) o;
return Objects.equals(this.response, disableResult.response) && Objects.equals(this.details, disableResult.details);
}
@Override
public int hashCode() {
return Objects.hash(response, details);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DisableResult {\n");
sb.append(" response: ").append(toIndentedString(response)).append("\n");
sb.append(" details: ").append(toIndentedString(details)).append("\n");
sb.append("}");
return sb.toString();
}
}