• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

stripe / stripe-java / #16517

08 Oct 2024 06:27PM UTC coverage: 12.74% (-0.2%) from 12.899%
#16517

push

github

web-flow
Merge pull request #1872 from stripe/latest-codegen-beta

Update generated code for beta

53 of 2404 new or added lines in 50 files covered. (2.2%)

91 existing lines in 27 files now uncovered.

18753 of 147196 relevant lines covered (12.74%)

0.13 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

4.2
/src/main/java/com/stripe/param/WebhookEndpointUpdateParams.java
1
// File generated from our OpenAPI spec
2
package com.stripe.param;
3

4
import com.google.gson.annotations.SerializedName;
5
import com.stripe.net.ApiRequestParams;
6
import com.stripe.param.common.EmptyParam;
7
import java.util.ArrayList;
8
import java.util.HashMap;
9
import java.util.List;
10
import java.util.Map;
11
import lombok.Getter;
12

13
@Getter
14
public class WebhookEndpointUpdateParams extends ApiRequestParams {
15
  /** An optional description of what the webhook is used for. */
16
  @SerializedName("description")
17
  Object description;
18

19
  /** Disable the webhook endpoint if set to true. */
20
  @SerializedName("disabled")
21
  Boolean disabled;
22

23
  /**
24
   * The list of events to enable for this endpoint. You may specify {@code ['*']} to enable all
25
   * events, except those that require explicit selection.
26
   */
27
  @SerializedName("enabled_events")
28
  List<WebhookEndpointUpdateParams.EnabledEvent> enabledEvents;
29

30
  /** Specifies which fields in the response should be expanded. */
31
  @SerializedName("expand")
32
  List<String> expand;
33

34
  /**
35
   * Map of extra parameters for custom features not available in this client library. The content
36
   * in this map is not serialized under this field's {@code @SerializedName} value. Instead, each
37
   * key/value pair is serialized as if the key is a root-level field (serialized) name in this
38
   * param object. Effectively, this map is flattened to its parent instance.
39
   */
40
  @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY)
41
  Map<String, Object> extraParams;
42

43
  /**
44
   * Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach
45
   * to an object. This can be useful for storing additional information about the object in a
46
   * structured format. Individual keys can be unset by posting an empty value to them. All keys can
47
   * be unset by posting an empty value to {@code metadata}.
48
   */
49
  @SerializedName("metadata")
50
  Object metadata;
51

52
  /** The URL of the webhook endpoint. */
53
  @SerializedName("url")
54
  Object url;
55

56
  private WebhookEndpointUpdateParams(
57
      Object description,
58
      Boolean disabled,
59
      List<WebhookEndpointUpdateParams.EnabledEvent> enabledEvents,
60
      List<String> expand,
61
      Map<String, Object> extraParams,
62
      Object metadata,
63
      Object url) {
1✔
64
    this.description = description;
1✔
65
    this.disabled = disabled;
1✔
66
    this.enabledEvents = enabledEvents;
1✔
67
    this.expand = expand;
1✔
68
    this.extraParams = extraParams;
1✔
69
    this.metadata = metadata;
1✔
70
    this.url = url;
1✔
71
  }
1✔
72

73
  public static Builder builder() {
74
    return new Builder();
1✔
75
  }
76

77
  public static class Builder {
1✔
78
    private Object description;
79

80
    private Boolean disabled;
81

82
    private List<WebhookEndpointUpdateParams.EnabledEvent> enabledEvents;
83

84
    private List<String> expand;
85

86
    private Map<String, Object> extraParams;
87

88
    private Object metadata;
89

90
    private Object url;
91

92
    /** Finalize and obtain parameter instance from this builder. */
93
    public WebhookEndpointUpdateParams build() {
94
      return new WebhookEndpointUpdateParams(
1✔
95
          this.description,
96
          this.disabled,
97
          this.enabledEvents,
98
          this.expand,
99
          this.extraParams,
100
          this.metadata,
101
          this.url);
102
    }
103

104
    /** An optional description of what the webhook is used for. */
105
    public Builder setDescription(String description) {
106
      this.description = description;
×
107
      return this;
×
108
    }
109

110
    /** An optional description of what the webhook is used for. */
111
    public Builder setDescription(EmptyParam description) {
112
      this.description = description;
×
113
      return this;
×
114
    }
115

116
    /** Disable the webhook endpoint if set to true. */
117
    public Builder setDisabled(Boolean disabled) {
118
      this.disabled = disabled;
×
119
      return this;
×
120
    }
121

122
    /**
123
     * Add an element to `enabledEvents` list. A list is initialized for the first `add/addAll`
124
     * call, and subsequent calls adds additional elements to the original list. See {@link
125
     * WebhookEndpointUpdateParams#enabledEvents} for the field documentation.
126
     */
127
    public Builder addEnabledEvent(WebhookEndpointUpdateParams.EnabledEvent element) {
128
      if (this.enabledEvents == null) {
×
129
        this.enabledEvents = new ArrayList<>();
×
130
      }
131
      this.enabledEvents.add(element);
×
132
      return this;
×
133
    }
134

135
    /**
136
     * Add all elements to `enabledEvents` list. A list is initialized for the first `add/addAll`
137
     * call, and subsequent calls adds additional elements to the original list. See {@link
138
     * WebhookEndpointUpdateParams#enabledEvents} for the field documentation.
139
     */
140
    public Builder addAllEnabledEvent(List<WebhookEndpointUpdateParams.EnabledEvent> elements) {
141
      if (this.enabledEvents == null) {
×
142
        this.enabledEvents = new ArrayList<>();
×
143
      }
144
      this.enabledEvents.addAll(elements);
×
145
      return this;
×
146
    }
147

148
    /**
149
     * Add an element to `expand` list. A list is initialized for the first `add/addAll` call, and
150
     * subsequent calls adds additional elements to the original list. See {@link
151
     * WebhookEndpointUpdateParams#expand} for the field documentation.
152
     */
153
    public Builder addExpand(String element) {
154
      if (this.expand == null) {
×
155
        this.expand = new ArrayList<>();
×
156
      }
157
      this.expand.add(element);
×
158
      return this;
×
159
    }
160

161
    /**
162
     * Add all elements to `expand` list. A list is initialized for the first `add/addAll` call, and
163
     * subsequent calls adds additional elements to the original list. See {@link
164
     * WebhookEndpointUpdateParams#expand} for the field documentation.
165
     */
166
    public Builder addAllExpand(List<String> elements) {
167
      if (this.expand == null) {
×
168
        this.expand = new ArrayList<>();
×
169
      }
170
      this.expand.addAll(elements);
×
171
      return this;
×
172
    }
173

174
    /**
175
     * Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll`
176
     * call, and subsequent calls add additional key/value pairs to the original map. See {@link
177
     * WebhookEndpointUpdateParams#extraParams} for the field documentation.
178
     */
179
    public Builder putExtraParam(String key, Object value) {
180
      if (this.extraParams == null) {
×
181
        this.extraParams = new HashMap<>();
×
182
      }
183
      this.extraParams.put(key, value);
×
184
      return this;
×
185
    }
186

187
    /**
188
     * Add all map key/value pairs to `extraParams` map. A map is initialized for the first
189
     * `put/putAll` call, and subsequent calls add additional key/value pairs to the original map.
190
     * See {@link WebhookEndpointUpdateParams#extraParams} for the field documentation.
191
     */
192
    public Builder putAllExtraParam(Map<String, Object> map) {
193
      if (this.extraParams == null) {
×
194
        this.extraParams = new HashMap<>();
×
195
      }
196
      this.extraParams.putAll(map);
×
197
      return this;
×
198
    }
199

200
    /**
201
     * Add a key/value pair to `metadata` map. A map is initialized for the first `put/putAll` call,
202
     * and subsequent calls add additional key/value pairs to the original map. See {@link
203
     * WebhookEndpointUpdateParams#metadata} for the field documentation.
204
     */
205
    @SuppressWarnings("unchecked")
206
    public Builder putMetadata(String key, String value) {
207
      if (this.metadata == null || this.metadata instanceof EmptyParam) {
×
208
        this.metadata = new HashMap<String, String>();
×
209
      }
210
      ((Map<String, String>) this.metadata).put(key, value);
×
211
      return this;
×
212
    }
213

214
    /**
215
     * Add all map key/value pairs to `metadata` map. A map is initialized for the first
216
     * `put/putAll` call, and subsequent calls add additional key/value pairs to the original map.
217
     * See {@link WebhookEndpointUpdateParams#metadata} for the field documentation.
218
     */
219
    @SuppressWarnings("unchecked")
220
    public Builder putAllMetadata(Map<String, String> map) {
221
      if (this.metadata == null || this.metadata instanceof EmptyParam) {
×
222
        this.metadata = new HashMap<String, String>();
×
223
      }
224
      ((Map<String, String>) this.metadata).putAll(map);
×
225
      return this;
×
226
    }
227

228
    /**
229
     * Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach
230
     * to an object. This can be useful for storing additional information about the object in a
231
     * structured format. Individual keys can be unset by posting an empty value to them. All keys
232
     * can be unset by posting an empty value to {@code metadata}.
233
     */
234
    public Builder setMetadata(EmptyParam metadata) {
235
      this.metadata = metadata;
×
236
      return this;
×
237
    }
238

239
    /**
240
     * Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach
241
     * to an object. This can be useful for storing additional information about the object in a
242
     * structured format. Individual keys can be unset by posting an empty value to them. All keys
243
     * can be unset by posting an empty value to {@code metadata}.
244
     */
245
    public Builder setMetadata(Map<String, String> metadata) {
246
      this.metadata = metadata;
×
247
      return this;
×
248
    }
249

250
    /** The URL of the webhook endpoint. */
251
    public Builder setUrl(String url) {
252
      this.url = url;
1✔
253
      return this;
1✔
254
    }
255

256
    /** The URL of the webhook endpoint. */
257
    public Builder setUrl(EmptyParam url) {
258
      this.url = url;
×
259
      return this;
×
260
    }
261
  }
262

263
  public enum EnabledEvent implements ApiRequestParams.EnumParam {
×
264
    @SerializedName("*")
×
265
    ALL("*"),
266

267
    @SerializedName("account.application.authorized")
×
268
    ACCOUNT__APPLICATION__AUTHORIZED("account.application.authorized"),
269

270
    @SerializedName("account.application.deauthorized")
×
271
    ACCOUNT__APPLICATION__DEAUTHORIZED("account.application.deauthorized"),
272

273
    @SerializedName("account.external_account.created")
×
274
    ACCOUNT__EXTERNAL_ACCOUNT__CREATED("account.external_account.created"),
275

276
    @SerializedName("account.external_account.deleted")
×
277
    ACCOUNT__EXTERNAL_ACCOUNT__DELETED("account.external_account.deleted"),
278

279
    @SerializedName("account.external_account.updated")
×
280
    ACCOUNT__EXTERNAL_ACCOUNT__UPDATED("account.external_account.updated"),
281

282
    @SerializedName("account.updated")
×
283
    ACCOUNT__UPDATED("account.updated"),
284

285
    @SerializedName("account_notice.created")
×
286
    ACCOUNT_NOTICE__CREATED("account_notice.created"),
287

288
    @SerializedName("account_notice.updated")
×
289
    ACCOUNT_NOTICE__UPDATED("account_notice.updated"),
290

291
    @SerializedName("application_fee.created")
×
292
    APPLICATION_FEE__CREATED("application_fee.created"),
293

294
    @SerializedName("application_fee.refund.updated")
×
295
    APPLICATION_FEE__REFUND__UPDATED("application_fee.refund.updated"),
296

297
    @SerializedName("application_fee.refunded")
×
298
    APPLICATION_FEE__REFUNDED("application_fee.refunded"),
299

300
    @SerializedName("balance.available")
×
301
    BALANCE__AVAILABLE("balance.available"),
302

303
    @SerializedName("billing.alert.triggered")
×
304
    BILLING__ALERT__TRIGGERED("billing.alert.triggered"),
305

306
    @SerializedName("billing.meter_error_report.triggered")
×
307
    BILLING__METER_ERROR_REPORT__TRIGGERED("billing.meter_error_report.triggered"),
308

309
    @SerializedName("billing_portal.configuration.created")
×
310
    BILLING_PORTAL__CONFIGURATION__CREATED("billing_portal.configuration.created"),
311

312
    @SerializedName("billing_portal.configuration.updated")
×
313
    BILLING_PORTAL__CONFIGURATION__UPDATED("billing_portal.configuration.updated"),
314

315
    @SerializedName("billing_portal.session.created")
×
316
    BILLING_PORTAL__SESSION__CREATED("billing_portal.session.created"),
317

318
    @SerializedName("capability.updated")
×
319
    CAPABILITY__UPDATED("capability.updated"),
320

321
    @SerializedName("capital.financing_offer.accepted")
×
322
    CAPITAL__FINANCING_OFFER__ACCEPTED("capital.financing_offer.accepted"),
323

324
    @SerializedName("capital.financing_offer.canceled")
×
325
    CAPITAL__FINANCING_OFFER__CANCELED("capital.financing_offer.canceled"),
326

327
    @SerializedName("capital.financing_offer.created")
×
328
    CAPITAL__FINANCING_OFFER__CREATED("capital.financing_offer.created"),
329

330
    @SerializedName("capital.financing_offer.expired")
×
331
    CAPITAL__FINANCING_OFFER__EXPIRED("capital.financing_offer.expired"),
332

333
    @SerializedName("capital.financing_offer.fully_repaid")
×
334
    CAPITAL__FINANCING_OFFER__FULLY_REPAID("capital.financing_offer.fully_repaid"),
335

336
    @SerializedName("capital.financing_offer.paid_out")
×
337
    CAPITAL__FINANCING_OFFER__PAID_OUT("capital.financing_offer.paid_out"),
338

339
    @SerializedName("capital.financing_offer.rejected")
×
340
    CAPITAL__FINANCING_OFFER__REJECTED("capital.financing_offer.rejected"),
341

342
    @SerializedName("capital.financing_offer.replacement_created")
×
343
    CAPITAL__FINANCING_OFFER__REPLACEMENT_CREATED("capital.financing_offer.replacement_created"),
344

345
    @SerializedName("capital.financing_transaction.created")
×
346
    CAPITAL__FINANCING_TRANSACTION__CREATED("capital.financing_transaction.created"),
347

348
    @SerializedName("cash_balance.funds_available")
×
349
    CASH_BALANCE__FUNDS_AVAILABLE("cash_balance.funds_available"),
350

351
    @SerializedName("charge.captured")
×
352
    CHARGE__CAPTURED("charge.captured"),
353

354
    @SerializedName("charge.dispute.closed")
×
355
    CHARGE__DISPUTE__CLOSED("charge.dispute.closed"),
356

357
    @SerializedName("charge.dispute.created")
×
358
    CHARGE__DISPUTE__CREATED("charge.dispute.created"),
359

360
    @SerializedName("charge.dispute.funds_reinstated")
×
361
    CHARGE__DISPUTE__FUNDS_REINSTATED("charge.dispute.funds_reinstated"),
362

363
    @SerializedName("charge.dispute.funds_withdrawn")
×
364
    CHARGE__DISPUTE__FUNDS_WITHDRAWN("charge.dispute.funds_withdrawn"),
365

366
    @SerializedName("charge.dispute.updated")
×
367
    CHARGE__DISPUTE__UPDATED("charge.dispute.updated"),
368

369
    @SerializedName("charge.expired")
×
370
    CHARGE__EXPIRED("charge.expired"),
371

372
    @SerializedName("charge.failed")
×
373
    CHARGE__FAILED("charge.failed"),
374

375
    @SerializedName("charge.pending")
×
376
    CHARGE__PENDING("charge.pending"),
377

378
    @SerializedName("charge.refund.updated")
×
379
    CHARGE__REFUND__UPDATED("charge.refund.updated"),
380

381
    @SerializedName("charge.refunded")
×
382
    CHARGE__REFUNDED("charge.refunded"),
383

384
    @SerializedName("charge.succeeded")
×
385
    CHARGE__SUCCEEDED("charge.succeeded"),
386

387
    @SerializedName("charge.updated")
×
388
    CHARGE__UPDATED("charge.updated"),
389

390
    @SerializedName("checkout.session.async_payment_failed")
×
391
    CHECKOUT__SESSION__ASYNC_PAYMENT_FAILED("checkout.session.async_payment_failed"),
392

393
    @SerializedName("checkout.session.async_payment_succeeded")
×
394
    CHECKOUT__SESSION__ASYNC_PAYMENT_SUCCEEDED("checkout.session.async_payment_succeeded"),
395

396
    @SerializedName("checkout.session.completed")
×
397
    CHECKOUT__SESSION__COMPLETED("checkout.session.completed"),
398

399
    @SerializedName("checkout.session.expired")
×
400
    CHECKOUT__SESSION__EXPIRED("checkout.session.expired"),
401

402
    @SerializedName("climate.order.canceled")
×
403
    CLIMATE__ORDER__CANCELED("climate.order.canceled"),
404

405
    @SerializedName("climate.order.created")
×
406
    CLIMATE__ORDER__CREATED("climate.order.created"),
407

408
    @SerializedName("climate.order.delayed")
×
409
    CLIMATE__ORDER__DELAYED("climate.order.delayed"),
410

411
    @SerializedName("climate.order.delivered")
×
412
    CLIMATE__ORDER__DELIVERED("climate.order.delivered"),
413

414
    @SerializedName("climate.order.product_substituted")
×
415
    CLIMATE__ORDER__PRODUCT_SUBSTITUTED("climate.order.product_substituted"),
416

417
    @SerializedName("climate.product.created")
×
418
    CLIMATE__PRODUCT__CREATED("climate.product.created"),
419

420
    @SerializedName("climate.product.pricing_updated")
×
421
    CLIMATE__PRODUCT__PRICING_UPDATED("climate.product.pricing_updated"),
422

423
    @SerializedName("coupon.created")
×
424
    COUPON__CREATED("coupon.created"),
425

426
    @SerializedName("coupon.deleted")
×
427
    COUPON__DELETED("coupon.deleted"),
428

429
    @SerializedName("coupon.updated")
×
430
    COUPON__UPDATED("coupon.updated"),
431

432
    @SerializedName("credit_note.created")
×
433
    CREDIT_NOTE__CREATED("credit_note.created"),
434

435
    @SerializedName("credit_note.updated")
×
436
    CREDIT_NOTE__UPDATED("credit_note.updated"),
437

438
    @SerializedName("credit_note.voided")
×
439
    CREDIT_NOTE__VOIDED("credit_note.voided"),
440

441
    @SerializedName("customer.created")
×
442
    CUSTOMER__CREATED("customer.created"),
443

444
    @SerializedName("customer.deleted")
×
445
    CUSTOMER__DELETED("customer.deleted"),
446

447
    @SerializedName("customer.discount.created")
×
448
    CUSTOMER__DISCOUNT__CREATED("customer.discount.created"),
449

450
    @SerializedName("customer.discount.deleted")
×
451
    CUSTOMER__DISCOUNT__DELETED("customer.discount.deleted"),
452

453
    @SerializedName("customer.discount.updated")
×
454
    CUSTOMER__DISCOUNT__UPDATED("customer.discount.updated"),
455

456
    @SerializedName("customer.source.created")
×
457
    CUSTOMER__SOURCE__CREATED("customer.source.created"),
458

459
    @SerializedName("customer.source.deleted")
×
460
    CUSTOMER__SOURCE__DELETED("customer.source.deleted"),
461

462
    @SerializedName("customer.source.expiring")
×
463
    CUSTOMER__SOURCE__EXPIRING("customer.source.expiring"),
464

465
    @SerializedName("customer.source.updated")
×
466
    CUSTOMER__SOURCE__UPDATED("customer.source.updated"),
467

468
    @SerializedName("customer.subscription.collection_paused")
×
469
    CUSTOMER__SUBSCRIPTION__COLLECTION_PAUSED("customer.subscription.collection_paused"),
470

471
    @SerializedName("customer.subscription.collection_resumed")
×
472
    CUSTOMER__SUBSCRIPTION__COLLECTION_RESUMED("customer.subscription.collection_resumed"),
473

474
    @SerializedName("customer.subscription.created")
×
475
    CUSTOMER__SUBSCRIPTION__CREATED("customer.subscription.created"),
476

477
    @SerializedName("customer.subscription.custom_event")
×
478
    CUSTOMER__SUBSCRIPTION__CUSTOM_EVENT("customer.subscription.custom_event"),
479

480
    @SerializedName("customer.subscription.deleted")
×
481
    CUSTOMER__SUBSCRIPTION__DELETED("customer.subscription.deleted"),
482

483
    @SerializedName("customer.subscription.paused")
×
484
    CUSTOMER__SUBSCRIPTION__PAUSED("customer.subscription.paused"),
485

486
    @SerializedName("customer.subscription.pending_update_applied")
×
487
    CUSTOMER__SUBSCRIPTION__PENDING_UPDATE_APPLIED("customer.subscription.pending_update_applied"),
488

489
    @SerializedName("customer.subscription.pending_update_expired")
×
490
    CUSTOMER__SUBSCRIPTION__PENDING_UPDATE_EXPIRED("customer.subscription.pending_update_expired"),
491

492
    @SerializedName("customer.subscription.price_migration_failed")
×
493
    CUSTOMER__SUBSCRIPTION__PRICE_MIGRATION_FAILED("customer.subscription.price_migration_failed"),
494

495
    @SerializedName("customer.subscription.resumed")
×
496
    CUSTOMER__SUBSCRIPTION__RESUMED("customer.subscription.resumed"),
497

498
    @SerializedName("customer.subscription.trial_will_end")
×
499
    CUSTOMER__SUBSCRIPTION__TRIAL_WILL_END("customer.subscription.trial_will_end"),
500

501
    @SerializedName("customer.subscription.updated")
×
502
    CUSTOMER__SUBSCRIPTION__UPDATED("customer.subscription.updated"),
503

504
    @SerializedName("customer.tax_id.created")
×
505
    CUSTOMER__TAX_ID__CREATED("customer.tax_id.created"),
506

507
    @SerializedName("customer.tax_id.deleted")
×
508
    CUSTOMER__TAX_ID__DELETED("customer.tax_id.deleted"),
509

510
    @SerializedName("customer.tax_id.updated")
×
511
    CUSTOMER__TAX_ID__UPDATED("customer.tax_id.updated"),
512

513
    @SerializedName("customer.updated")
×
514
    CUSTOMER__UPDATED("customer.updated"),
515

516
    @SerializedName("customer_cash_balance_transaction.created")
×
517
    CUSTOMER_CASH_BALANCE_TRANSACTION__CREATED("customer_cash_balance_transaction.created"),
518

519
    @SerializedName("entitlements.active_entitlement_summary.updated")
×
520
    ENTITLEMENTS__ACTIVE_ENTITLEMENT_SUMMARY__UPDATED(
521
        "entitlements.active_entitlement_summary.updated"),
522

523
    @SerializedName("file.created")
×
524
    FILE__CREATED("file.created"),
525

526
    @SerializedName("financial_connections.account.created")
×
527
    FINANCIAL_CONNECTIONS__ACCOUNT__CREATED("financial_connections.account.created"),
528

529
    @SerializedName("financial_connections.account.deactivated")
×
530
    FINANCIAL_CONNECTIONS__ACCOUNT__DEACTIVATED("financial_connections.account.deactivated"),
531

532
    @SerializedName("financial_connections.account.disconnected")
×
533
    FINANCIAL_CONNECTIONS__ACCOUNT__DISCONNECTED("financial_connections.account.disconnected"),
534

535
    @SerializedName("financial_connections.account.reactivated")
×
536
    FINANCIAL_CONNECTIONS__ACCOUNT__REACTIVATED("financial_connections.account.reactivated"),
537

538
    @SerializedName("financial_connections.account.refreshed_balance")
×
539
    FINANCIAL_CONNECTIONS__ACCOUNT__REFRESHED_BALANCE(
540
        "financial_connections.account.refreshed_balance"),
541

542
    @SerializedName("financial_connections.account.refreshed_inferred_balances")
×
543
    FINANCIAL_CONNECTIONS__ACCOUNT__REFRESHED_INFERRED_BALANCES(
544
        "financial_connections.account.refreshed_inferred_balances"),
545

546
    @SerializedName("financial_connections.account.refreshed_ownership")
×
547
    FINANCIAL_CONNECTIONS__ACCOUNT__REFRESHED_OWNERSHIP(
548
        "financial_connections.account.refreshed_ownership"),
549

550
    @SerializedName("financial_connections.account.refreshed_transactions")
×
551
    FINANCIAL_CONNECTIONS__ACCOUNT__REFRESHED_TRANSACTIONS(
552
        "financial_connections.account.refreshed_transactions"),
553

554
    @SerializedName("financial_connections.session.updated")
×
555
    FINANCIAL_CONNECTIONS__SESSION__UPDATED("financial_connections.session.updated"),
556

557
    @SerializedName("identity.verification_session.canceled")
×
558
    IDENTITY__VERIFICATION_SESSION__CANCELED("identity.verification_session.canceled"),
559

560
    @SerializedName("identity.verification_session.created")
×
561
    IDENTITY__VERIFICATION_SESSION__CREATED("identity.verification_session.created"),
562

563
    @SerializedName("identity.verification_session.processing")
×
564
    IDENTITY__VERIFICATION_SESSION__PROCESSING("identity.verification_session.processing"),
565

566
    @SerializedName("identity.verification_session.redacted")
×
567
    IDENTITY__VERIFICATION_SESSION__REDACTED("identity.verification_session.redacted"),
568

569
    @SerializedName("identity.verification_session.requires_input")
×
570
    IDENTITY__VERIFICATION_SESSION__REQUIRES_INPUT("identity.verification_session.requires_input"),
571

572
    @SerializedName("identity.verification_session.verified")
×
573
    IDENTITY__VERIFICATION_SESSION__VERIFIED("identity.verification_session.verified"),
574

575
    @SerializedName("invoice.created")
×
576
    INVOICE__CREATED("invoice.created"),
577

578
    @SerializedName("invoice.deleted")
×
579
    INVOICE__DELETED("invoice.deleted"),
580

581
    @SerializedName("invoice.finalization_failed")
×
582
    INVOICE__FINALIZATION_FAILED("invoice.finalization_failed"),
583

584
    @SerializedName("invoice.finalized")
×
585
    INVOICE__FINALIZED("invoice.finalized"),
586

587
    @SerializedName("invoice.marked_uncollectible")
×
588
    INVOICE__MARKED_UNCOLLECTIBLE("invoice.marked_uncollectible"),
589

590
    @SerializedName("invoice.overdue")
×
591
    INVOICE__OVERDUE("invoice.overdue"),
592

593
    @SerializedName("invoice.paid")
×
594
    INVOICE__PAID("invoice.paid"),
595

596
    @SerializedName("invoice.payment.overpaid")
×
597
    INVOICE__PAYMENT__OVERPAID("invoice.payment.overpaid"),
598

599
    @SerializedName("invoice.payment_action_required")
×
600
    INVOICE__PAYMENT_ACTION_REQUIRED("invoice.payment_action_required"),
601

602
    @SerializedName("invoice.payment_failed")
×
603
    INVOICE__PAYMENT_FAILED("invoice.payment_failed"),
604

605
    @SerializedName("invoice.payment_succeeded")
×
606
    INVOICE__PAYMENT_SUCCEEDED("invoice.payment_succeeded"),
607

608
    @SerializedName("invoice.sent")
×
609
    INVOICE__SENT("invoice.sent"),
610

611
    @SerializedName("invoice.upcoming")
×
612
    INVOICE__UPCOMING("invoice.upcoming"),
613

614
    @SerializedName("invoice.updated")
×
615
    INVOICE__UPDATED("invoice.updated"),
616

617
    @SerializedName("invoice.voided")
×
618
    INVOICE__VOIDED("invoice.voided"),
619

620
    @SerializedName("invoice.will_be_due")
×
621
    INVOICE__WILL_BE_DUE("invoice.will_be_due"),
622

623
    @SerializedName("invoiceitem.created")
×
624
    INVOICEITEM__CREATED("invoiceitem.created"),
625

626
    @SerializedName("invoiceitem.deleted")
×
627
    INVOICEITEM__DELETED("invoiceitem.deleted"),
628

629
    @SerializedName("issuing_authorization.created")
×
630
    ISSUING_AUTHORIZATION__CREATED("issuing_authorization.created"),
631

632
    @SerializedName("issuing_authorization.request")
×
633
    ISSUING_AUTHORIZATION__REQUEST("issuing_authorization.request"),
634

635
    @SerializedName("issuing_authorization.updated")
×
636
    ISSUING_AUTHORIZATION__UPDATED("issuing_authorization.updated"),
637

638
    @SerializedName("issuing_card.created")
×
639
    ISSUING_CARD__CREATED("issuing_card.created"),
640

641
    @SerializedName("issuing_card.updated")
×
642
    ISSUING_CARD__UPDATED("issuing_card.updated"),
643

644
    @SerializedName("issuing_cardholder.created")
×
645
    ISSUING_CARDHOLDER__CREATED("issuing_cardholder.created"),
646

647
    @SerializedName("issuing_cardholder.updated")
×
648
    ISSUING_CARDHOLDER__UPDATED("issuing_cardholder.updated"),
649

650
    @SerializedName("issuing_dispute.closed")
×
651
    ISSUING_DISPUTE__CLOSED("issuing_dispute.closed"),
652

653
    @SerializedName("issuing_dispute.created")
×
654
    ISSUING_DISPUTE__CREATED("issuing_dispute.created"),
655

656
    @SerializedName("issuing_dispute.funds_reinstated")
×
657
    ISSUING_DISPUTE__FUNDS_REINSTATED("issuing_dispute.funds_reinstated"),
658

659
    @SerializedName("issuing_dispute.funds_rescinded")
×
660
    ISSUING_DISPUTE__FUNDS_RESCINDED("issuing_dispute.funds_rescinded"),
661

662
    @SerializedName("issuing_dispute.submitted")
×
663
    ISSUING_DISPUTE__SUBMITTED("issuing_dispute.submitted"),
664

665
    @SerializedName("issuing_dispute.updated")
×
666
    ISSUING_DISPUTE__UPDATED("issuing_dispute.updated"),
667

668
    @SerializedName("issuing_dispute_settlement_detail.created")
×
669
    ISSUING_DISPUTE_SETTLEMENT_DETAIL__CREATED("issuing_dispute_settlement_detail.created"),
670

671
    @SerializedName("issuing_dispute_settlement_detail.updated")
×
672
    ISSUING_DISPUTE_SETTLEMENT_DETAIL__UPDATED("issuing_dispute_settlement_detail.updated"),
673

674
    @SerializedName("issuing_personalization_design.activated")
×
675
    ISSUING_PERSONALIZATION_DESIGN__ACTIVATED("issuing_personalization_design.activated"),
676

677
    @SerializedName("issuing_personalization_design.deactivated")
×
678
    ISSUING_PERSONALIZATION_DESIGN__DEACTIVATED("issuing_personalization_design.deactivated"),
679

680
    @SerializedName("issuing_personalization_design.rejected")
×
681
    ISSUING_PERSONALIZATION_DESIGN__REJECTED("issuing_personalization_design.rejected"),
682

683
    @SerializedName("issuing_personalization_design.updated")
×
684
    ISSUING_PERSONALIZATION_DESIGN__UPDATED("issuing_personalization_design.updated"),
685

686
    @SerializedName("issuing_settlement.created")
×
687
    ISSUING_SETTLEMENT__CREATED("issuing_settlement.created"),
688

689
    @SerializedName("issuing_settlement.updated")
×
690
    ISSUING_SETTLEMENT__UPDATED("issuing_settlement.updated"),
691

692
    @SerializedName("issuing_token.created")
×
693
    ISSUING_TOKEN__CREATED("issuing_token.created"),
694

695
    @SerializedName("issuing_token.updated")
×
696
    ISSUING_TOKEN__UPDATED("issuing_token.updated"),
697

698
    @SerializedName("issuing_transaction.created")
×
699
    ISSUING_TRANSACTION__CREATED("issuing_transaction.created"),
700

701
    @SerializedName("issuing_transaction.updated")
×
702
    ISSUING_TRANSACTION__UPDATED("issuing_transaction.updated"),
703

704
    @SerializedName("mandate.updated")
×
705
    MANDATE__UPDATED("mandate.updated"),
706

707
    @SerializedName("payment_intent.amount_capturable_updated")
×
708
    PAYMENT_INTENT__AMOUNT_CAPTURABLE_UPDATED("payment_intent.amount_capturable_updated"),
709

710
    @SerializedName("payment_intent.canceled")
×
711
    PAYMENT_INTENT__CANCELED("payment_intent.canceled"),
712

713
    @SerializedName("payment_intent.created")
×
714
    PAYMENT_INTENT__CREATED("payment_intent.created"),
715

716
    @SerializedName("payment_intent.partially_funded")
×
717
    PAYMENT_INTENT__PARTIALLY_FUNDED("payment_intent.partially_funded"),
718

719
    @SerializedName("payment_intent.payment_failed")
×
720
    PAYMENT_INTENT__PAYMENT_FAILED("payment_intent.payment_failed"),
721

722
    @SerializedName("payment_intent.processing")
×
723
    PAYMENT_INTENT__PROCESSING("payment_intent.processing"),
724

725
    @SerializedName("payment_intent.requires_action")
×
726
    PAYMENT_INTENT__REQUIRES_ACTION("payment_intent.requires_action"),
727

728
    @SerializedName("payment_intent.succeeded")
×
729
    PAYMENT_INTENT__SUCCEEDED("payment_intent.succeeded"),
730

731
    @SerializedName("payment_link.created")
×
732
    PAYMENT_LINK__CREATED("payment_link.created"),
733

734
    @SerializedName("payment_link.updated")
×
735
    PAYMENT_LINK__UPDATED("payment_link.updated"),
736

737
    @SerializedName("payment_method.attached")
×
738
    PAYMENT_METHOD__ATTACHED("payment_method.attached"),
739

740
    @SerializedName("payment_method.automatically_updated")
×
741
    PAYMENT_METHOD__AUTOMATICALLY_UPDATED("payment_method.automatically_updated"),
742

743
    @SerializedName("payment_method.detached")
×
744
    PAYMENT_METHOD__DETACHED("payment_method.detached"),
745

746
    @SerializedName("payment_method.updated")
×
747
    PAYMENT_METHOD__UPDATED("payment_method.updated"),
748

749
    @SerializedName("payout.canceled")
×
750
    PAYOUT__CANCELED("payout.canceled"),
751

752
    @SerializedName("payout.created")
×
753
    PAYOUT__CREATED("payout.created"),
754

755
    @SerializedName("payout.failed")
×
756
    PAYOUT__FAILED("payout.failed"),
757

758
    @SerializedName("payout.paid")
×
759
    PAYOUT__PAID("payout.paid"),
760

761
    @SerializedName("payout.reconciliation_completed")
×
762
    PAYOUT__RECONCILIATION_COMPLETED("payout.reconciliation_completed"),
763

764
    @SerializedName("payout.updated")
×
765
    PAYOUT__UPDATED("payout.updated"),
766

767
    @SerializedName("person.created")
×
768
    PERSON__CREATED("person.created"),
769

770
    @SerializedName("person.deleted")
×
771
    PERSON__DELETED("person.deleted"),
772

773
    @SerializedName("person.updated")
×
774
    PERSON__UPDATED("person.updated"),
775

776
    @SerializedName("plan.created")
×
777
    PLAN__CREATED("plan.created"),
778

779
    @SerializedName("plan.deleted")
×
780
    PLAN__DELETED("plan.deleted"),
781

782
    @SerializedName("plan.updated")
×
783
    PLAN__UPDATED("plan.updated"),
784

785
    @SerializedName("price.created")
×
786
    PRICE__CREATED("price.created"),
787

788
    @SerializedName("price.deleted")
×
789
    PRICE__DELETED("price.deleted"),
790

791
    @SerializedName("price.updated")
×
792
    PRICE__UPDATED("price.updated"),
793

794
    @SerializedName("product.created")
×
795
    PRODUCT__CREATED("product.created"),
796

797
    @SerializedName("product.deleted")
×
798
    PRODUCT__DELETED("product.deleted"),
799

800
    @SerializedName("product.updated")
×
801
    PRODUCT__UPDATED("product.updated"),
802

803
    @SerializedName("promotion_code.created")
×
804
    PROMOTION_CODE__CREATED("promotion_code.created"),
805

806
    @SerializedName("promotion_code.updated")
×
807
    PROMOTION_CODE__UPDATED("promotion_code.updated"),
808

809
    @SerializedName("quote.accept_failed")
×
810
    QUOTE__ACCEPT_FAILED("quote.accept_failed"),
811

812
    @SerializedName("quote.accepted")
×
813
    QUOTE__ACCEPTED("quote.accepted"),
814

815
    @SerializedName("quote.accepting")
×
816
    QUOTE__ACCEPTING("quote.accepting"),
817

818
    @SerializedName("quote.canceled")
×
819
    QUOTE__CANCELED("quote.canceled"),
820

821
    @SerializedName("quote.created")
×
822
    QUOTE__CREATED("quote.created"),
823

824
    @SerializedName("quote.draft")
×
825
    QUOTE__DRAFT("quote.draft"),
826

827
    @SerializedName("quote.finalized")
×
828
    QUOTE__FINALIZED("quote.finalized"),
829

830
    @SerializedName("quote.reestimate_failed")
×
831
    QUOTE__REESTIMATE_FAILED("quote.reestimate_failed"),
832

833
    @SerializedName("quote.reestimated")
×
834
    QUOTE__REESTIMATED("quote.reestimated"),
835

836
    @SerializedName("quote.stale")
×
837
    QUOTE__STALE("quote.stale"),
838

839
    @SerializedName("radar.early_fraud_warning.created")
×
840
    RADAR__EARLY_FRAUD_WARNING__CREATED("radar.early_fraud_warning.created"),
841

842
    @SerializedName("radar.early_fraud_warning.updated")
×
843
    RADAR__EARLY_FRAUD_WARNING__UPDATED("radar.early_fraud_warning.updated"),
844

845
    @SerializedName("refund.created")
×
846
    REFUND__CREATED("refund.created"),
847

NEW
848
    @SerializedName("refund.failed")
×
849
    REFUND__FAILED("refund.failed"),
850

UNCOV
851
    @SerializedName("refund.updated")
×
852
    REFUND__UPDATED("refund.updated"),
853

854
    @SerializedName("reporting.report_run.failed")
×
855
    REPORTING__REPORT_RUN__FAILED("reporting.report_run.failed"),
856

857
    @SerializedName("reporting.report_run.succeeded")
×
858
    REPORTING__REPORT_RUN__SUCCEEDED("reporting.report_run.succeeded"),
859

860
    @SerializedName("reporting.report_type.updated")
×
861
    REPORTING__REPORT_TYPE__UPDATED("reporting.report_type.updated"),
862

863
    @SerializedName("review.closed")
×
864
    REVIEW__CLOSED("review.closed"),
865

866
    @SerializedName("review.opened")
×
867
    REVIEW__OPENED("review.opened"),
868

869
    @SerializedName("setup_intent.canceled")
×
870
    SETUP_INTENT__CANCELED("setup_intent.canceled"),
871

872
    @SerializedName("setup_intent.created")
×
873
    SETUP_INTENT__CREATED("setup_intent.created"),
874

875
    @SerializedName("setup_intent.requires_action")
×
876
    SETUP_INTENT__REQUIRES_ACTION("setup_intent.requires_action"),
877

878
    @SerializedName("setup_intent.setup_failed")
×
879
    SETUP_INTENT__SETUP_FAILED("setup_intent.setup_failed"),
880

881
    @SerializedName("setup_intent.succeeded")
×
882
    SETUP_INTENT__SUCCEEDED("setup_intent.succeeded"),
883

884
    @SerializedName("sigma.scheduled_query_run.created")
×
885
    SIGMA__SCHEDULED_QUERY_RUN__CREATED("sigma.scheduled_query_run.created"),
886

887
    @SerializedName("source.canceled")
×
888
    SOURCE__CANCELED("source.canceled"),
889

890
    @SerializedName("source.chargeable")
×
891
    SOURCE__CHARGEABLE("source.chargeable"),
892

893
    @SerializedName("source.failed")
×
894
    SOURCE__FAILED("source.failed"),
895

896
    @SerializedName("source.mandate_notification")
×
897
    SOURCE__MANDATE_NOTIFICATION("source.mandate_notification"),
898

899
    @SerializedName("source.refund_attributes_required")
×
900
    SOURCE__REFUND_ATTRIBUTES_REQUIRED("source.refund_attributes_required"),
901

902
    @SerializedName("source.transaction.created")
×
903
    SOURCE__TRANSACTION__CREATED("source.transaction.created"),
904

905
    @SerializedName("source.transaction.updated")
×
906
    SOURCE__TRANSACTION__UPDATED("source.transaction.updated"),
907

908
    @SerializedName("subscription_schedule.aborted")
×
909
    SUBSCRIPTION_SCHEDULE__ABORTED("subscription_schedule.aborted"),
910

911
    @SerializedName("subscription_schedule.canceled")
×
912
    SUBSCRIPTION_SCHEDULE__CANCELED("subscription_schedule.canceled"),
913

914
    @SerializedName("subscription_schedule.completed")
×
915
    SUBSCRIPTION_SCHEDULE__COMPLETED("subscription_schedule.completed"),
916

917
    @SerializedName("subscription_schedule.created")
×
918
    SUBSCRIPTION_SCHEDULE__CREATED("subscription_schedule.created"),
919

920
    @SerializedName("subscription_schedule.expiring")
×
921
    SUBSCRIPTION_SCHEDULE__EXPIRING("subscription_schedule.expiring"),
922

923
    @SerializedName("subscription_schedule.price_migration_failed")
×
924
    SUBSCRIPTION_SCHEDULE__PRICE_MIGRATION_FAILED("subscription_schedule.price_migration_failed"),
925

926
    @SerializedName("subscription_schedule.released")
×
927
    SUBSCRIPTION_SCHEDULE__RELEASED("subscription_schedule.released"),
928

929
    @SerializedName("subscription_schedule.updated")
×
930
    SUBSCRIPTION_SCHEDULE__UPDATED("subscription_schedule.updated"),
931

932
    @SerializedName("tax.form.updated")
×
933
    TAX__FORM__UPDATED("tax.form.updated"),
934

935
    @SerializedName("tax.settings.updated")
×
936
    TAX__SETTINGS__UPDATED("tax.settings.updated"),
937

938
    @SerializedName("tax_rate.created")
×
939
    TAX_RATE__CREATED("tax_rate.created"),
940

941
    @SerializedName("tax_rate.updated")
×
942
    TAX_RATE__UPDATED("tax_rate.updated"),
943

944
    @SerializedName("terminal.reader.action_failed")
×
945
    TERMINAL__READER__ACTION_FAILED("terminal.reader.action_failed"),
946

947
    @SerializedName("terminal.reader.action_succeeded")
×
948
    TERMINAL__READER__ACTION_SUCCEEDED("terminal.reader.action_succeeded"),
949

950
    @SerializedName("terminal.reader.action_updated")
×
951
    TERMINAL__READER__ACTION_UPDATED("terminal.reader.action_updated"),
952

953
    @SerializedName("test_helpers.test_clock.advancing")
×
954
    TEST_HELPERS__TEST_CLOCK__ADVANCING("test_helpers.test_clock.advancing"),
955

956
    @SerializedName("test_helpers.test_clock.created")
×
957
    TEST_HELPERS__TEST_CLOCK__CREATED("test_helpers.test_clock.created"),
958

959
    @SerializedName("test_helpers.test_clock.deleted")
×
960
    TEST_HELPERS__TEST_CLOCK__DELETED("test_helpers.test_clock.deleted"),
961

962
    @SerializedName("test_helpers.test_clock.internal_failure")
×
963
    TEST_HELPERS__TEST_CLOCK__INTERNAL_FAILURE("test_helpers.test_clock.internal_failure"),
964

965
    @SerializedName("test_helpers.test_clock.ready")
×
966
    TEST_HELPERS__TEST_CLOCK__READY("test_helpers.test_clock.ready"),
967

968
    @SerializedName("topup.canceled")
×
969
    TOPUP__CANCELED("topup.canceled"),
970

971
    @SerializedName("topup.created")
×
972
    TOPUP__CREATED("topup.created"),
973

974
    @SerializedName("topup.failed")
×
975
    TOPUP__FAILED("topup.failed"),
976

977
    @SerializedName("topup.reversed")
×
978
    TOPUP__REVERSED("topup.reversed"),
979

980
    @SerializedName("topup.succeeded")
×
981
    TOPUP__SUCCEEDED("topup.succeeded"),
982

983
    @SerializedName("transfer.created")
×
984
    TRANSFER__CREATED("transfer.created"),
985

986
    @SerializedName("transfer.reversed")
×
987
    TRANSFER__REVERSED("transfer.reversed"),
988

989
    @SerializedName("transfer.updated")
×
990
    TRANSFER__UPDATED("transfer.updated"),
991

992
    @SerializedName("treasury.credit_reversal.created")
×
993
    TREASURY__CREDIT_REVERSAL__CREATED("treasury.credit_reversal.created"),
994

995
    @SerializedName("treasury.credit_reversal.posted")
×
996
    TREASURY__CREDIT_REVERSAL__POSTED("treasury.credit_reversal.posted"),
997

998
    @SerializedName("treasury.debit_reversal.completed")
×
999
    TREASURY__DEBIT_REVERSAL__COMPLETED("treasury.debit_reversal.completed"),
1000

1001
    @SerializedName("treasury.debit_reversal.created")
×
1002
    TREASURY__DEBIT_REVERSAL__CREATED("treasury.debit_reversal.created"),
1003

1004
    @SerializedName("treasury.debit_reversal.initial_credit_granted")
×
1005
    TREASURY__DEBIT_REVERSAL__INITIAL_CREDIT_GRANTED(
1006
        "treasury.debit_reversal.initial_credit_granted"),
1007

1008
    @SerializedName("treasury.financial_account.closed")
×
1009
    TREASURY__FINANCIAL_ACCOUNT__CLOSED("treasury.financial_account.closed"),
1010

1011
    @SerializedName("treasury.financial_account.created")
×
1012
    TREASURY__FINANCIAL_ACCOUNT__CREATED("treasury.financial_account.created"),
1013

1014
    @SerializedName("treasury.financial_account.features_status_updated")
×
1015
    TREASURY__FINANCIAL_ACCOUNT__FEATURES_STATUS_UPDATED(
1016
        "treasury.financial_account.features_status_updated"),
1017

1018
    @SerializedName("treasury.inbound_transfer.canceled")
×
1019
    TREASURY__INBOUND_TRANSFER__CANCELED("treasury.inbound_transfer.canceled"),
1020

1021
    @SerializedName("treasury.inbound_transfer.created")
×
1022
    TREASURY__INBOUND_TRANSFER__CREATED("treasury.inbound_transfer.created"),
1023

1024
    @SerializedName("treasury.inbound_transfer.failed")
×
1025
    TREASURY__INBOUND_TRANSFER__FAILED("treasury.inbound_transfer.failed"),
1026

1027
    @SerializedName("treasury.inbound_transfer.succeeded")
×
1028
    TREASURY__INBOUND_TRANSFER__SUCCEEDED("treasury.inbound_transfer.succeeded"),
1029

1030
    @SerializedName("treasury.outbound_payment.canceled")
×
1031
    TREASURY__OUTBOUND_PAYMENT__CANCELED("treasury.outbound_payment.canceled"),
1032

1033
    @SerializedName("treasury.outbound_payment.created")
×
1034
    TREASURY__OUTBOUND_PAYMENT__CREATED("treasury.outbound_payment.created"),
1035

1036
    @SerializedName("treasury.outbound_payment.expected_arrival_date_updated")
×
1037
    TREASURY__OUTBOUND_PAYMENT__EXPECTED_ARRIVAL_DATE_UPDATED(
1038
        "treasury.outbound_payment.expected_arrival_date_updated"),
1039

1040
    @SerializedName("treasury.outbound_payment.failed")
×
1041
    TREASURY__OUTBOUND_PAYMENT__FAILED("treasury.outbound_payment.failed"),
1042

1043
    @SerializedName("treasury.outbound_payment.posted")
×
1044
    TREASURY__OUTBOUND_PAYMENT__POSTED("treasury.outbound_payment.posted"),
1045

1046
    @SerializedName("treasury.outbound_payment.returned")
×
1047
    TREASURY__OUTBOUND_PAYMENT__RETURNED("treasury.outbound_payment.returned"),
1048

1049
    @SerializedName("treasury.outbound_payment.tracking_details_updated")
×
1050
    TREASURY__OUTBOUND_PAYMENT__TRACKING_DETAILS_UPDATED(
1051
        "treasury.outbound_payment.tracking_details_updated"),
1052

1053
    @SerializedName("treasury.outbound_transfer.canceled")
×
1054
    TREASURY__OUTBOUND_TRANSFER__CANCELED("treasury.outbound_transfer.canceled"),
1055

1056
    @SerializedName("treasury.outbound_transfer.created")
×
1057
    TREASURY__OUTBOUND_TRANSFER__CREATED("treasury.outbound_transfer.created"),
1058

1059
    @SerializedName("treasury.outbound_transfer.expected_arrival_date_updated")
×
1060
    TREASURY__OUTBOUND_TRANSFER__EXPECTED_ARRIVAL_DATE_UPDATED(
1061
        "treasury.outbound_transfer.expected_arrival_date_updated"),
1062

1063
    @SerializedName("treasury.outbound_transfer.failed")
×
1064
    TREASURY__OUTBOUND_TRANSFER__FAILED("treasury.outbound_transfer.failed"),
1065

1066
    @SerializedName("treasury.outbound_transfer.posted")
×
1067
    TREASURY__OUTBOUND_TRANSFER__POSTED("treasury.outbound_transfer.posted"),
1068

1069
    @SerializedName("treasury.outbound_transfer.returned")
×
1070
    TREASURY__OUTBOUND_TRANSFER__RETURNED("treasury.outbound_transfer.returned"),
1071

1072
    @SerializedName("treasury.outbound_transfer.tracking_details_updated")
×
1073
    TREASURY__OUTBOUND_TRANSFER__TRACKING_DETAILS_UPDATED(
1074
        "treasury.outbound_transfer.tracking_details_updated"),
1075

1076
    @SerializedName("treasury.received_credit.created")
×
1077
    TREASURY__RECEIVED_CREDIT__CREATED("treasury.received_credit.created"),
1078

1079
    @SerializedName("treasury.received_credit.failed")
×
1080
    TREASURY__RECEIVED_CREDIT__FAILED("treasury.received_credit.failed"),
1081

1082
    @SerializedName("treasury.received_credit.succeeded")
×
1083
    TREASURY__RECEIVED_CREDIT__SUCCEEDED("treasury.received_credit.succeeded"),
1084

1085
    @SerializedName("treasury.received_debit.created")
×
1086
    TREASURY__RECEIVED_DEBIT__CREATED("treasury.received_debit.created");
1087

1088
    @Getter(onMethod_ = {@Override})
1089
    private final String value;
1090

1091
    EnabledEvent(String value) {
×
1092
      this.value = value;
×
1093
    }
×
1094
  }
1095
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc