com.adyen.model.marketpay.notification.DeleteNotificationConfigurationRequest 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.notification;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import com.google.gson.annotations.SerializedName;
/**
* DeleteNotificationConfigurationRequest
*/
public class DeleteNotificationConfigurationRequest {
@SerializedName("notificationIds")
private List notificationIds = new ArrayList();
public DeleteNotificationConfigurationRequest notificationIds(List notificationIds) {
this.notificationIds = notificationIds;
return this;
}
public DeleteNotificationConfigurationRequest addNotificationIdsItem(Long notificationIdsItem) {
this.notificationIds.add(notificationIdsItem);
return this;
}
/**
* IDs of the notification configurations to be deleted
*
* @return notificationIds
**/
public List getNotificationIds() {
return notificationIds;
}
public void setNotificationIds(List notificationIds) {
this.notificationIds = notificationIds;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DeleteNotificationConfigurationRequest deleteNotificationConfigurationRequest = (DeleteNotificationConfigurationRequest) o;
return Objects.equals(this.notificationIds, deleteNotificationConfigurationRequest.notificationIds);
}
@Override
public int hashCode() {
return Objects.hash(notificationIds);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DeleteNotificationConfigurationRequest {\n");
sb.append(" notificationIds: ").append(toIndentedString(notificationIds)).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 ");
}
}