com.adyen.model.management.TestWebhookRequest Maven / Gradle / Ivy
/*
* Management API
*
* The version of the OpenAPI document: 3
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.adyen.model.management;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.adyen.model.management.CustomNotification;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.core.JsonProcessingException;
/**
* TestWebhookRequest
*/
@JsonPropertyOrder({
TestWebhookRequest.JSON_PROPERTY_NOTIFICATION,
TestWebhookRequest.JSON_PROPERTY_TYPES
})
public class TestWebhookRequest {
public static final String JSON_PROPERTY_NOTIFICATION = "notification";
private CustomNotification notification;
public static final String JSON_PROPERTY_TYPES = "types";
private List types = null;
public TestWebhookRequest() {
}
public TestWebhookRequest notification(CustomNotification notification) {
this.notification = notification;
return this;
}
/**
* Get notification
* @return notification
**/
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_NOTIFICATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public CustomNotification getNotification() {
return notification;
}
/**
* notification
*
* @param notification
*/
@JsonProperty(JSON_PROPERTY_NOTIFICATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setNotification(CustomNotification notification) {
this.notification = notification;
}
public TestWebhookRequest types(List types) {
this.types = types;
return this;
}
public TestWebhookRequest addTypesItem(String typesItem) {
if (this.types == null) {
this.types = new ArrayList<>();
}
this.types.add(typesItem);
return this;
}
/**
* List of event codes for which to send test notifications. Only the webhook types below are supported. Possible values if webhook `type`: **standard**: * **AUTHORISATION** * **CHARGEBACK_REVERSED** * **ORDER_CLOSED** * **ORDER_OPENED** * **PAIDOUT_REVERSED** * **PAYOUT_THIRDPARTY** * **REFUNDED_REVERSED** * **REFUND_WITH_DATA** * **REPORT_AVAILABLE** * **CUSTOM** - set your custom notification fields in the [`notification`](https://docs.adyen.com/api-explorer/#/ManagementService/v1/post/companies/{companyId}/webhooks/{webhookId}/test__reqParam_notification) object. Possible values if webhook `type`: **banktransfer-notification**: * **PENDING** Possible values if webhook `type`: **report-notification**: * **REPORT_AVAILABLE** Possible values if webhook `type`: **ideal-notification**: * **AUTHORISATION** Possible values if webhook `type`: **pending-notification**: * **PENDING**
* @return types
**/
@ApiModelProperty(value = "List of event codes for which to send test notifications. Only the webhook types below are supported. Possible values if webhook `type`: **standard**: * **AUTHORISATION** * **CHARGEBACK_REVERSED** * **ORDER_CLOSED** * **ORDER_OPENED** * **PAIDOUT_REVERSED** * **PAYOUT_THIRDPARTY** * **REFUNDED_REVERSED** * **REFUND_WITH_DATA** * **REPORT_AVAILABLE** * **CUSTOM** - set your custom notification fields in the [`notification`](https://docs.adyen.com/api-explorer/#/ManagementService/v1/post/companies/{companyId}/webhooks/{webhookId}/test__reqParam_notification) object. Possible values if webhook `type`: **banktransfer-notification**: * **PENDING** Possible values if webhook `type`: **report-notification**: * **REPORT_AVAILABLE** Possible values if webhook `type`: **ideal-notification**: * **AUTHORISATION** Possible values if webhook `type`: **pending-notification**: * **PENDING** ")
@JsonProperty(JSON_PROPERTY_TYPES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getTypes() {
return types;
}
/**
* List of event codes for which to send test notifications. Only the webhook types below are supported. Possible values if webhook `type`: **standard**: * **AUTHORISATION** * **CHARGEBACK_REVERSED** * **ORDER_CLOSED** * **ORDER_OPENED** * **PAIDOUT_REVERSED** * **PAYOUT_THIRDPARTY** * **REFUNDED_REVERSED** * **REFUND_WITH_DATA** * **REPORT_AVAILABLE** * **CUSTOM** - set your custom notification fields in the [`notification`](https://docs.adyen.com/api-explorer/#/ManagementService/v1/post/companies/{companyId}/webhooks/{webhookId}/test__reqParam_notification) object. Possible values if webhook `type`: **banktransfer-notification**: * **PENDING** Possible values if webhook `type`: **report-notification**: * **REPORT_AVAILABLE** Possible values if webhook `type`: **ideal-notification**: * **AUTHORISATION** Possible values if webhook `type`: **pending-notification**: * **PENDING**
*
* @param types
*/
@JsonProperty(JSON_PROPERTY_TYPES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTypes(List types) {
this.types = types;
}
/**
* Return true if this TestWebhookRequest object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TestWebhookRequest testWebhookRequest = (TestWebhookRequest) o;
return Objects.equals(this.notification, testWebhookRequest.notification) &&
Objects.equals(this.types, testWebhookRequest.types);
}
@Override
public int hashCode() {
return Objects.hash(notification, types);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TestWebhookRequest {\n");
sb.append(" notification: ").append(toIndentedString(notification)).append("\n");
sb.append(" types: ").append(toIndentedString(types)).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 ");
}
/**
* Create an instance of TestWebhookRequest given an JSON string
*
* @param jsonString JSON string
* @return An instance of TestWebhookRequest
* @throws JsonProcessingException if the JSON string is invalid with respect to TestWebhookRequest
*/
public static TestWebhookRequest fromJson(String jsonString) throws JsonProcessingException {
return JSON.getMapper().readValue(jsonString, TestWebhookRequest.class);
}
/**
* Convert an instance of TestWebhookRequest to an JSON string
*
* @return JSON string
*/
public String toJson() throws JsonProcessingException {
return JSON.getMapper().writeValueAsString(this);
}
}