-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathBalancePlatformNotificationResponse.java
133 lines (114 loc) · 4.33 KB
/
BalancePlatformNotificationResponse.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
* Transfer webhooks
*
* The version of the OpenAPI document: 4
*
*
* 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.transferwebhooks;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
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 com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.core.JsonProcessingException;
/**
* BalancePlatformNotificationResponse
*/
@JsonPropertyOrder({
BalancePlatformNotificationResponse.JSON_PROPERTY_NOTIFICATION_RESPONSE
})
public class BalancePlatformNotificationResponse {
public static final String JSON_PROPERTY_NOTIFICATION_RESPONSE = "notificationResponse";
private String notificationResponse;
public BalancePlatformNotificationResponse() {
}
public BalancePlatformNotificationResponse notificationResponse(String notificationResponse) {
this.notificationResponse = notificationResponse;
return this;
}
/**
* Respond with **HTTP 200 OK** and `[accepted]` in the response body to [accept the webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).
* @return notificationResponse
**/
@ApiModelProperty(value = "Respond with **HTTP 200 OK** and `[accepted]` in the response body to [accept the webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).")
@JsonProperty(JSON_PROPERTY_NOTIFICATION_RESPONSE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getNotificationResponse() {
return notificationResponse;
}
/**
* Respond with **HTTP 200 OK** and `[accepted]` in the response body to [accept the webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).
*
* @param notificationResponse
*/
@JsonProperty(JSON_PROPERTY_NOTIFICATION_RESPONSE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setNotificationResponse(String notificationResponse) {
this.notificationResponse = notificationResponse;
}
/**
* Return true if this BalancePlatformNotificationResponse object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BalancePlatformNotificationResponse balancePlatformNotificationResponse = (BalancePlatformNotificationResponse) o;
return Objects.equals(this.notificationResponse, balancePlatformNotificationResponse.notificationResponse);
}
@Override
public int hashCode() {
return Objects.hash(notificationResponse);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BalancePlatformNotificationResponse {\n");
sb.append(" notificationResponse: ").append(toIndentedString(notificationResponse)).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 BalancePlatformNotificationResponse given an JSON string
*
* @param jsonString JSON string
* @return An instance of BalancePlatformNotificationResponse
* @throws JsonProcessingException if the JSON string is invalid with respect to BalancePlatformNotificationResponse
*/
public static BalancePlatformNotificationResponse fromJson(String jsonString) throws JsonProcessingException {
return JSON.getMapper().readValue(jsonString, BalancePlatformNotificationResponse.class);
}
/**
* Convert an instance of BalancePlatformNotificationResponse to an JSON string
*
* @return JSON string
*/
public String toJson() throws JsonProcessingException {
return JSON.getMapper().writeValueAsString(this);
}
}