-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathTransactionRulesResult.java
252 lines (211 loc) · 7.71 KB
/
TransactionRulesResult.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*
* 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.adyen.model.transferwebhooks.TransactionEventViolation;
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;
/**
* TransactionRulesResult
*/
@JsonPropertyOrder({
TransactionRulesResult.JSON_PROPERTY_ADVICE,
TransactionRulesResult.JSON_PROPERTY_ALL_HARD_BLOCK_RULES_PASSED,
TransactionRulesResult.JSON_PROPERTY_SCORE,
TransactionRulesResult.JSON_PROPERTY_TRIGGERED_TRANSACTION_RULES
})
public class TransactionRulesResult {
public static final String JSON_PROPERTY_ADVICE = "advice";
private String advice;
public static final String JSON_PROPERTY_ALL_HARD_BLOCK_RULES_PASSED = "allHardBlockRulesPassed";
private Boolean allHardBlockRulesPassed;
public static final String JSON_PROPERTY_SCORE = "score";
private Integer score;
public static final String JSON_PROPERTY_TRIGGERED_TRANSACTION_RULES = "triggeredTransactionRules";
private List<TransactionEventViolation> triggeredTransactionRules = null;
public TransactionRulesResult() {
}
public TransactionRulesResult advice(String advice) {
this.advice = advice;
return this;
}
/**
* The advice given by the Risk analysis.
* @return advice
**/
@ApiModelProperty(value = "The advice given by the Risk analysis.")
@JsonProperty(JSON_PROPERTY_ADVICE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getAdvice() {
return advice;
}
/**
* The advice given by the Risk analysis.
*
* @param advice
*/
@JsonProperty(JSON_PROPERTY_ADVICE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAdvice(String advice) {
this.advice = advice;
}
public TransactionRulesResult allHardBlockRulesPassed(Boolean allHardBlockRulesPassed) {
this.allHardBlockRulesPassed = allHardBlockRulesPassed;
return this;
}
/**
* Indicates whether the transaction passed the evaluation for all hardblock rules
* @return allHardBlockRulesPassed
**/
@ApiModelProperty(value = "Indicates whether the transaction passed the evaluation for all hardblock rules")
@JsonProperty(JSON_PROPERTY_ALL_HARD_BLOCK_RULES_PASSED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getAllHardBlockRulesPassed() {
return allHardBlockRulesPassed;
}
/**
* Indicates whether the transaction passed the evaluation for all hardblock rules
*
* @param allHardBlockRulesPassed
*/
@JsonProperty(JSON_PROPERTY_ALL_HARD_BLOCK_RULES_PASSED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAllHardBlockRulesPassed(Boolean allHardBlockRulesPassed) {
this.allHardBlockRulesPassed = allHardBlockRulesPassed;
}
public TransactionRulesResult score(Integer score) {
this.score = score;
return this;
}
/**
* The score of the Risk analysis.
* @return score
**/
@ApiModelProperty(value = "The score of the Risk analysis.")
@JsonProperty(JSON_PROPERTY_SCORE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getScore() {
return score;
}
/**
* The score of the Risk analysis.
*
* @param score
*/
@JsonProperty(JSON_PROPERTY_SCORE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setScore(Integer score) {
this.score = score;
}
public TransactionRulesResult triggeredTransactionRules(List<TransactionEventViolation> triggeredTransactionRules) {
this.triggeredTransactionRules = triggeredTransactionRules;
return this;
}
public TransactionRulesResult addTriggeredTransactionRulesItem(TransactionEventViolation triggeredTransactionRulesItem) {
if (this.triggeredTransactionRules == null) {
this.triggeredTransactionRules = new ArrayList<>();
}
this.triggeredTransactionRules.add(triggeredTransactionRulesItem);
return this;
}
/**
* Array containing all the transaction rules that the transaction triggered.
* @return triggeredTransactionRules
**/
@ApiModelProperty(value = "Array containing all the transaction rules that the transaction triggered.")
@JsonProperty(JSON_PROPERTY_TRIGGERED_TRANSACTION_RULES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<TransactionEventViolation> getTriggeredTransactionRules() {
return triggeredTransactionRules;
}
/**
* Array containing all the transaction rules that the transaction triggered.
*
* @param triggeredTransactionRules
*/
@JsonProperty(JSON_PROPERTY_TRIGGERED_TRANSACTION_RULES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTriggeredTransactionRules(List<TransactionEventViolation> triggeredTransactionRules) {
this.triggeredTransactionRules = triggeredTransactionRules;
}
/**
* Return true if this TransactionRulesResult object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransactionRulesResult transactionRulesResult = (TransactionRulesResult) o;
return Objects.equals(this.advice, transactionRulesResult.advice) &&
Objects.equals(this.allHardBlockRulesPassed, transactionRulesResult.allHardBlockRulesPassed) &&
Objects.equals(this.score, transactionRulesResult.score) &&
Objects.equals(this.triggeredTransactionRules, transactionRulesResult.triggeredTransactionRules);
}
@Override
public int hashCode() {
return Objects.hash(advice, allHardBlockRulesPassed, score, triggeredTransactionRules);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransactionRulesResult {\n");
sb.append(" advice: ").append(toIndentedString(advice)).append("\n");
sb.append(" allHardBlockRulesPassed: ").append(toIndentedString(allHardBlockRulesPassed)).append("\n");
sb.append(" score: ").append(toIndentedString(score)).append("\n");
sb.append(" triggeredTransactionRules: ").append(toIndentedString(triggeredTransactionRules)).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 TransactionRulesResult given an JSON string
*
* @param jsonString JSON string
* @return An instance of TransactionRulesResult
* @throws JsonProcessingException if the JSON string is invalid with respect to TransactionRulesResult
*/
public static TransactionRulesResult fromJson(String jsonString) throws JsonProcessingException {
return JSON.getMapper().readValue(jsonString, TransactionRulesResult.class);
}
/**
* Convert an instance of TransactionRulesResult to an JSON string
*
* @return JSON string
*/
public String toJson() throws JsonProcessingException {
return JSON.getMapper().writeValueAsString(this);
}
}