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

stripe / stripe-java / #16659

21 Nov 2024 07:24PM UTC coverage: 12.4% (-0.01%) from 12.414%
#16659

push

github

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

Update generated code for beta

3 of 189 new or added lines in 10 files covered. (1.59%)

1 existing line in 1 file now uncovered.

18860 of 152092 relevant lines covered (12.4%)

0.12 hits per line

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

4.15
/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

NEW
593
    @SerializedName("invoice.overpaid")
×
594
    INVOICE__OVERPAID("invoice.overpaid"),
595

UNCOV
596
    @SerializedName("invoice.paid")
×
597
    INVOICE__PAID("invoice.paid"),
598

599
    @SerializedName("invoice.payment.overpaid")
×
600
    INVOICE__PAYMENT__OVERPAID("invoice.payment.overpaid"),
601

602
    @SerializedName("invoice.payment_action_required")
×
603
    INVOICE__PAYMENT_ACTION_REQUIRED("invoice.payment_action_required"),
604

605
    @SerializedName("invoice.payment_attempt_required")
×
606
    INVOICE__PAYMENT_ATTEMPT_REQUIRED("invoice.payment_attempt_required"),
607

608
    @SerializedName("invoice.payment_failed")
×
609
    INVOICE__PAYMENT_FAILED("invoice.payment_failed"),
610

611
    @SerializedName("invoice.payment_succeeded")
×
612
    INVOICE__PAYMENT_SUCCEEDED("invoice.payment_succeeded"),
613

614
    @SerializedName("invoice.sent")
×
615
    INVOICE__SENT("invoice.sent"),
616

617
    @SerializedName("invoice.upcoming")
×
618
    INVOICE__UPCOMING("invoice.upcoming"),
619

620
    @SerializedName("invoice.updated")
×
621
    INVOICE__UPDATED("invoice.updated"),
622

623
    @SerializedName("invoice.voided")
×
624
    INVOICE__VOIDED("invoice.voided"),
625

626
    @SerializedName("invoice.will_be_due")
×
627
    INVOICE__WILL_BE_DUE("invoice.will_be_due"),
628

629
    @SerializedName("invoiceitem.created")
×
630
    INVOICEITEM__CREATED("invoiceitem.created"),
631

632
    @SerializedName("invoiceitem.deleted")
×
633
    INVOICEITEM__DELETED("invoiceitem.deleted"),
634

635
    @SerializedName("issuing_authorization.created")
×
636
    ISSUING_AUTHORIZATION__CREATED("issuing_authorization.created"),
637

638
    @SerializedName("issuing_authorization.request")
×
639
    ISSUING_AUTHORIZATION__REQUEST("issuing_authorization.request"),
640

641
    @SerializedName("issuing_authorization.updated")
×
642
    ISSUING_AUTHORIZATION__UPDATED("issuing_authorization.updated"),
643

644
    @SerializedName("issuing_card.created")
×
645
    ISSUING_CARD__CREATED("issuing_card.created"),
646

647
    @SerializedName("issuing_card.updated")
×
648
    ISSUING_CARD__UPDATED("issuing_card.updated"),
649

650
    @SerializedName("issuing_cardholder.created")
×
651
    ISSUING_CARDHOLDER__CREATED("issuing_cardholder.created"),
652

653
    @SerializedName("issuing_cardholder.updated")
×
654
    ISSUING_CARDHOLDER__UPDATED("issuing_cardholder.updated"),
655

656
    @SerializedName("issuing_dispute.closed")
×
657
    ISSUING_DISPUTE__CLOSED("issuing_dispute.closed"),
658

659
    @SerializedName("issuing_dispute.created")
×
660
    ISSUING_DISPUTE__CREATED("issuing_dispute.created"),
661

662
    @SerializedName("issuing_dispute.funds_reinstated")
×
663
    ISSUING_DISPUTE__FUNDS_REINSTATED("issuing_dispute.funds_reinstated"),
664

665
    @SerializedName("issuing_dispute.funds_rescinded")
×
666
    ISSUING_DISPUTE__FUNDS_RESCINDED("issuing_dispute.funds_rescinded"),
667

668
    @SerializedName("issuing_dispute.submitted")
×
669
    ISSUING_DISPUTE__SUBMITTED("issuing_dispute.submitted"),
670

671
    @SerializedName("issuing_dispute.updated")
×
672
    ISSUING_DISPUTE__UPDATED("issuing_dispute.updated"),
673

674
    @SerializedName("issuing_dispute_settlement_detail.created")
×
675
    ISSUING_DISPUTE_SETTLEMENT_DETAIL__CREATED("issuing_dispute_settlement_detail.created"),
676

677
    @SerializedName("issuing_dispute_settlement_detail.updated")
×
678
    ISSUING_DISPUTE_SETTLEMENT_DETAIL__UPDATED("issuing_dispute_settlement_detail.updated"),
679

680
    @SerializedName("issuing_fraud_liability_debit.created")
×
681
    ISSUING_FRAUD_LIABILITY_DEBIT__CREATED("issuing_fraud_liability_debit.created"),
682

683
    @SerializedName("issuing_personalization_design.activated")
×
684
    ISSUING_PERSONALIZATION_DESIGN__ACTIVATED("issuing_personalization_design.activated"),
685

686
    @SerializedName("issuing_personalization_design.deactivated")
×
687
    ISSUING_PERSONALIZATION_DESIGN__DEACTIVATED("issuing_personalization_design.deactivated"),
688

689
    @SerializedName("issuing_personalization_design.rejected")
×
690
    ISSUING_PERSONALIZATION_DESIGN__REJECTED("issuing_personalization_design.rejected"),
691

692
    @SerializedName("issuing_personalization_design.updated")
×
693
    ISSUING_PERSONALIZATION_DESIGN__UPDATED("issuing_personalization_design.updated"),
694

695
    @SerializedName("issuing_settlement.created")
×
696
    ISSUING_SETTLEMENT__CREATED("issuing_settlement.created"),
697

698
    @SerializedName("issuing_settlement.updated")
×
699
    ISSUING_SETTLEMENT__UPDATED("issuing_settlement.updated"),
700

701
    @SerializedName("issuing_token.created")
×
702
    ISSUING_TOKEN__CREATED("issuing_token.created"),
703

704
    @SerializedName("issuing_token.updated")
×
705
    ISSUING_TOKEN__UPDATED("issuing_token.updated"),
706

707
    @SerializedName("issuing_transaction.created")
×
708
    ISSUING_TRANSACTION__CREATED("issuing_transaction.created"),
709

710
    @SerializedName("issuing_transaction.purchase_details_receipt_updated")
×
711
    ISSUING_TRANSACTION__PURCHASE_DETAILS_RECEIPT_UPDATED(
712
        "issuing_transaction.purchase_details_receipt_updated"),
713

714
    @SerializedName("issuing_transaction.updated")
×
715
    ISSUING_TRANSACTION__UPDATED("issuing_transaction.updated"),
716

717
    @SerializedName("mandate.updated")
×
718
    MANDATE__UPDATED("mandate.updated"),
719

720
    @SerializedName("payment_intent.amount_capturable_updated")
×
721
    PAYMENT_INTENT__AMOUNT_CAPTURABLE_UPDATED("payment_intent.amount_capturable_updated"),
722

723
    @SerializedName("payment_intent.canceled")
×
724
    PAYMENT_INTENT__CANCELED("payment_intent.canceled"),
725

726
    @SerializedName("payment_intent.created")
×
727
    PAYMENT_INTENT__CREATED("payment_intent.created"),
728

729
    @SerializedName("payment_intent.partially_funded")
×
730
    PAYMENT_INTENT__PARTIALLY_FUNDED("payment_intent.partially_funded"),
731

732
    @SerializedName("payment_intent.payment_failed")
×
733
    PAYMENT_INTENT__PAYMENT_FAILED("payment_intent.payment_failed"),
734

735
    @SerializedName("payment_intent.processing")
×
736
    PAYMENT_INTENT__PROCESSING("payment_intent.processing"),
737

738
    @SerializedName("payment_intent.requires_action")
×
739
    PAYMENT_INTENT__REQUIRES_ACTION("payment_intent.requires_action"),
740

741
    @SerializedName("payment_intent.succeeded")
×
742
    PAYMENT_INTENT__SUCCEEDED("payment_intent.succeeded"),
743

744
    @SerializedName("payment_link.created")
×
745
    PAYMENT_LINK__CREATED("payment_link.created"),
746

747
    @SerializedName("payment_link.updated")
×
748
    PAYMENT_LINK__UPDATED("payment_link.updated"),
749

750
    @SerializedName("payment_method.attached")
×
751
    PAYMENT_METHOD__ATTACHED("payment_method.attached"),
752

753
    @SerializedName("payment_method.automatically_updated")
×
754
    PAYMENT_METHOD__AUTOMATICALLY_UPDATED("payment_method.automatically_updated"),
755

756
    @SerializedName("payment_method.detached")
×
757
    PAYMENT_METHOD__DETACHED("payment_method.detached"),
758

759
    @SerializedName("payment_method.updated")
×
760
    PAYMENT_METHOD__UPDATED("payment_method.updated"),
761

762
    @SerializedName("payout.canceled")
×
763
    PAYOUT__CANCELED("payout.canceled"),
764

765
    @SerializedName("payout.created")
×
766
    PAYOUT__CREATED("payout.created"),
767

768
    @SerializedName("payout.failed")
×
769
    PAYOUT__FAILED("payout.failed"),
770

771
    @SerializedName("payout.paid")
×
772
    PAYOUT__PAID("payout.paid"),
773

774
    @SerializedName("payout.reconciliation_completed")
×
775
    PAYOUT__RECONCILIATION_COMPLETED("payout.reconciliation_completed"),
776

777
    @SerializedName("payout.updated")
×
778
    PAYOUT__UPDATED("payout.updated"),
779

780
    @SerializedName("person.created")
×
781
    PERSON__CREATED("person.created"),
782

783
    @SerializedName("person.deleted")
×
784
    PERSON__DELETED("person.deleted"),
785

786
    @SerializedName("person.updated")
×
787
    PERSON__UPDATED("person.updated"),
788

789
    @SerializedName("plan.created")
×
790
    PLAN__CREATED("plan.created"),
791

792
    @SerializedName("plan.deleted")
×
793
    PLAN__DELETED("plan.deleted"),
794

795
    @SerializedName("plan.updated")
×
796
    PLAN__UPDATED("plan.updated"),
797

798
    @SerializedName("price.created")
×
799
    PRICE__CREATED("price.created"),
800

801
    @SerializedName("price.deleted")
×
802
    PRICE__DELETED("price.deleted"),
803

804
    @SerializedName("price.updated")
×
805
    PRICE__UPDATED("price.updated"),
806

807
    @SerializedName("product.created")
×
808
    PRODUCT__CREATED("product.created"),
809

810
    @SerializedName("product.deleted")
×
811
    PRODUCT__DELETED("product.deleted"),
812

813
    @SerializedName("product.updated")
×
814
    PRODUCT__UPDATED("product.updated"),
815

816
    @SerializedName("promotion_code.created")
×
817
    PROMOTION_CODE__CREATED("promotion_code.created"),
818

819
    @SerializedName("promotion_code.updated")
×
820
    PROMOTION_CODE__UPDATED("promotion_code.updated"),
821

822
    @SerializedName("quote.accept_failed")
×
823
    QUOTE__ACCEPT_FAILED("quote.accept_failed"),
824

825
    @SerializedName("quote.accepted")
×
826
    QUOTE__ACCEPTED("quote.accepted"),
827

828
    @SerializedName("quote.accepting")
×
829
    QUOTE__ACCEPTING("quote.accepting"),
830

831
    @SerializedName("quote.canceled")
×
832
    QUOTE__CANCELED("quote.canceled"),
833

834
    @SerializedName("quote.created")
×
835
    QUOTE__CREATED("quote.created"),
836

837
    @SerializedName("quote.draft")
×
838
    QUOTE__DRAFT("quote.draft"),
839

840
    @SerializedName("quote.finalized")
×
841
    QUOTE__FINALIZED("quote.finalized"),
842

843
    @SerializedName("quote.reestimate_failed")
×
844
    QUOTE__REESTIMATE_FAILED("quote.reestimate_failed"),
845

846
    @SerializedName("quote.reestimated")
×
847
    QUOTE__REESTIMATED("quote.reestimated"),
848

849
    @SerializedName("quote.stale")
×
850
    QUOTE__STALE("quote.stale"),
851

852
    @SerializedName("radar.early_fraud_warning.created")
×
853
    RADAR__EARLY_FRAUD_WARNING__CREATED("radar.early_fraud_warning.created"),
854

855
    @SerializedName("radar.early_fraud_warning.updated")
×
856
    RADAR__EARLY_FRAUD_WARNING__UPDATED("radar.early_fraud_warning.updated"),
857

858
    @SerializedName("refund.created")
×
859
    REFUND__CREATED("refund.created"),
860

861
    @SerializedName("refund.failed")
×
862
    REFUND__FAILED("refund.failed"),
863

864
    @SerializedName("refund.updated")
×
865
    REFUND__UPDATED("refund.updated"),
866

867
    @SerializedName("reporting.report_run.failed")
×
868
    REPORTING__REPORT_RUN__FAILED("reporting.report_run.failed"),
869

870
    @SerializedName("reporting.report_run.succeeded")
×
871
    REPORTING__REPORT_RUN__SUCCEEDED("reporting.report_run.succeeded"),
872

873
    @SerializedName("reporting.report_type.updated")
×
874
    REPORTING__REPORT_TYPE__UPDATED("reporting.report_type.updated"),
875

876
    @SerializedName("review.closed")
×
877
    REVIEW__CLOSED("review.closed"),
878

879
    @SerializedName("review.opened")
×
880
    REVIEW__OPENED("review.opened"),
881

882
    @SerializedName("setup_intent.canceled")
×
883
    SETUP_INTENT__CANCELED("setup_intent.canceled"),
884

885
    @SerializedName("setup_intent.created")
×
886
    SETUP_INTENT__CREATED("setup_intent.created"),
887

888
    @SerializedName("setup_intent.requires_action")
×
889
    SETUP_INTENT__REQUIRES_ACTION("setup_intent.requires_action"),
890

891
    @SerializedName("setup_intent.setup_failed")
×
892
    SETUP_INTENT__SETUP_FAILED("setup_intent.setup_failed"),
893

894
    @SerializedName("setup_intent.succeeded")
×
895
    SETUP_INTENT__SUCCEEDED("setup_intent.succeeded"),
896

897
    @SerializedName("sigma.scheduled_query_run.created")
×
898
    SIGMA__SCHEDULED_QUERY_RUN__CREATED("sigma.scheduled_query_run.created"),
899

900
    @SerializedName("source.canceled")
×
901
    SOURCE__CANCELED("source.canceled"),
902

903
    @SerializedName("source.chargeable")
×
904
    SOURCE__CHARGEABLE("source.chargeable"),
905

906
    @SerializedName("source.failed")
×
907
    SOURCE__FAILED("source.failed"),
908

909
    @SerializedName("source.mandate_notification")
×
910
    SOURCE__MANDATE_NOTIFICATION("source.mandate_notification"),
911

912
    @SerializedName("source.refund_attributes_required")
×
913
    SOURCE__REFUND_ATTRIBUTES_REQUIRED("source.refund_attributes_required"),
914

915
    @SerializedName("source.transaction.created")
×
916
    SOURCE__TRANSACTION__CREATED("source.transaction.created"),
917

918
    @SerializedName("source.transaction.updated")
×
919
    SOURCE__TRANSACTION__UPDATED("source.transaction.updated"),
920

921
    @SerializedName("subscription_schedule.aborted")
×
922
    SUBSCRIPTION_SCHEDULE__ABORTED("subscription_schedule.aborted"),
923

924
    @SerializedName("subscription_schedule.canceled")
×
925
    SUBSCRIPTION_SCHEDULE__CANCELED("subscription_schedule.canceled"),
926

927
    @SerializedName("subscription_schedule.completed")
×
928
    SUBSCRIPTION_SCHEDULE__COMPLETED("subscription_schedule.completed"),
929

930
    @SerializedName("subscription_schedule.created")
×
931
    SUBSCRIPTION_SCHEDULE__CREATED("subscription_schedule.created"),
932

933
    @SerializedName("subscription_schedule.expiring")
×
934
    SUBSCRIPTION_SCHEDULE__EXPIRING("subscription_schedule.expiring"),
935

936
    @SerializedName("subscription_schedule.price_migration_failed")
×
937
    SUBSCRIPTION_SCHEDULE__PRICE_MIGRATION_FAILED("subscription_schedule.price_migration_failed"),
938

939
    @SerializedName("subscription_schedule.released")
×
940
    SUBSCRIPTION_SCHEDULE__RELEASED("subscription_schedule.released"),
941

942
    @SerializedName("subscription_schedule.updated")
×
943
    SUBSCRIPTION_SCHEDULE__UPDATED("subscription_schedule.updated"),
944

945
    @SerializedName("tax.form.updated")
×
946
    TAX__FORM__UPDATED("tax.form.updated"),
947

948
    @SerializedName("tax.settings.updated")
×
949
    TAX__SETTINGS__UPDATED("tax.settings.updated"),
950

951
    @SerializedName("tax_rate.created")
×
952
    TAX_RATE__CREATED("tax_rate.created"),
953

954
    @SerializedName("tax_rate.updated")
×
955
    TAX_RATE__UPDATED("tax_rate.updated"),
956

957
    @SerializedName("terminal.reader.action_failed")
×
958
    TERMINAL__READER__ACTION_FAILED("terminal.reader.action_failed"),
959

960
    @SerializedName("terminal.reader.action_succeeded")
×
961
    TERMINAL__READER__ACTION_SUCCEEDED("terminal.reader.action_succeeded"),
962

963
    @SerializedName("terminal.reader.action_updated")
×
964
    TERMINAL__READER__ACTION_UPDATED("terminal.reader.action_updated"),
965

966
    @SerializedName("test_helpers.test_clock.advancing")
×
967
    TEST_HELPERS__TEST_CLOCK__ADVANCING("test_helpers.test_clock.advancing"),
968

969
    @SerializedName("test_helpers.test_clock.created")
×
970
    TEST_HELPERS__TEST_CLOCK__CREATED("test_helpers.test_clock.created"),
971

972
    @SerializedName("test_helpers.test_clock.deleted")
×
973
    TEST_HELPERS__TEST_CLOCK__DELETED("test_helpers.test_clock.deleted"),
974

975
    @SerializedName("test_helpers.test_clock.internal_failure")
×
976
    TEST_HELPERS__TEST_CLOCK__INTERNAL_FAILURE("test_helpers.test_clock.internal_failure"),
977

978
    @SerializedName("test_helpers.test_clock.ready")
×
979
    TEST_HELPERS__TEST_CLOCK__READY("test_helpers.test_clock.ready"),
980

981
    @SerializedName("topup.canceled")
×
982
    TOPUP__CANCELED("topup.canceled"),
983

984
    @SerializedName("topup.created")
×
985
    TOPUP__CREATED("topup.created"),
986

987
    @SerializedName("topup.failed")
×
988
    TOPUP__FAILED("topup.failed"),
989

990
    @SerializedName("topup.reversed")
×
991
    TOPUP__REVERSED("topup.reversed"),
992

993
    @SerializedName("topup.succeeded")
×
994
    TOPUP__SUCCEEDED("topup.succeeded"),
995

996
    @SerializedName("transfer.created")
×
997
    TRANSFER__CREATED("transfer.created"),
998

999
    @SerializedName("transfer.reversed")
×
1000
    TRANSFER__REVERSED("transfer.reversed"),
1001

1002
    @SerializedName("transfer.updated")
×
1003
    TRANSFER__UPDATED("transfer.updated"),
1004

1005
    @SerializedName("treasury.credit_reversal.created")
×
1006
    TREASURY__CREDIT_REVERSAL__CREATED("treasury.credit_reversal.created"),
1007

1008
    @SerializedName("treasury.credit_reversal.posted")
×
1009
    TREASURY__CREDIT_REVERSAL__POSTED("treasury.credit_reversal.posted"),
1010

1011
    @SerializedName("treasury.debit_reversal.completed")
×
1012
    TREASURY__DEBIT_REVERSAL__COMPLETED("treasury.debit_reversal.completed"),
1013

1014
    @SerializedName("treasury.debit_reversal.created")
×
1015
    TREASURY__DEBIT_REVERSAL__CREATED("treasury.debit_reversal.created"),
1016

1017
    @SerializedName("treasury.debit_reversal.initial_credit_granted")
×
1018
    TREASURY__DEBIT_REVERSAL__INITIAL_CREDIT_GRANTED(
1019
        "treasury.debit_reversal.initial_credit_granted"),
1020

1021
    @SerializedName("treasury.financial_account.closed")
×
1022
    TREASURY__FINANCIAL_ACCOUNT__CLOSED("treasury.financial_account.closed"),
1023

1024
    @SerializedName("treasury.financial_account.created")
×
1025
    TREASURY__FINANCIAL_ACCOUNT__CREATED("treasury.financial_account.created"),
1026

1027
    @SerializedName("treasury.financial_account.features_status_updated")
×
1028
    TREASURY__FINANCIAL_ACCOUNT__FEATURES_STATUS_UPDATED(
1029
        "treasury.financial_account.features_status_updated"),
1030

1031
    @SerializedName("treasury.inbound_transfer.canceled")
×
1032
    TREASURY__INBOUND_TRANSFER__CANCELED("treasury.inbound_transfer.canceled"),
1033

1034
    @SerializedName("treasury.inbound_transfer.created")
×
1035
    TREASURY__INBOUND_TRANSFER__CREATED("treasury.inbound_transfer.created"),
1036

1037
    @SerializedName("treasury.inbound_transfer.failed")
×
1038
    TREASURY__INBOUND_TRANSFER__FAILED("treasury.inbound_transfer.failed"),
1039

1040
    @SerializedName("treasury.inbound_transfer.succeeded")
×
1041
    TREASURY__INBOUND_TRANSFER__SUCCEEDED("treasury.inbound_transfer.succeeded"),
1042

1043
    @SerializedName("treasury.outbound_payment.canceled")
×
1044
    TREASURY__OUTBOUND_PAYMENT__CANCELED("treasury.outbound_payment.canceled"),
1045

1046
    @SerializedName("treasury.outbound_payment.created")
×
1047
    TREASURY__OUTBOUND_PAYMENT__CREATED("treasury.outbound_payment.created"),
1048

1049
    @SerializedName("treasury.outbound_payment.expected_arrival_date_updated")
×
1050
    TREASURY__OUTBOUND_PAYMENT__EXPECTED_ARRIVAL_DATE_UPDATED(
1051
        "treasury.outbound_payment.expected_arrival_date_updated"),
1052

1053
    @SerializedName("treasury.outbound_payment.failed")
×
1054
    TREASURY__OUTBOUND_PAYMENT__FAILED("treasury.outbound_payment.failed"),
1055

1056
    @SerializedName("treasury.outbound_payment.posted")
×
1057
    TREASURY__OUTBOUND_PAYMENT__POSTED("treasury.outbound_payment.posted"),
1058

1059
    @SerializedName("treasury.outbound_payment.returned")
×
1060
    TREASURY__OUTBOUND_PAYMENT__RETURNED("treasury.outbound_payment.returned"),
1061

1062
    @SerializedName("treasury.outbound_payment.tracking_details_updated")
×
1063
    TREASURY__OUTBOUND_PAYMENT__TRACKING_DETAILS_UPDATED(
1064
        "treasury.outbound_payment.tracking_details_updated"),
1065

1066
    @SerializedName("treasury.outbound_transfer.canceled")
×
1067
    TREASURY__OUTBOUND_TRANSFER__CANCELED("treasury.outbound_transfer.canceled"),
1068

1069
    @SerializedName("treasury.outbound_transfer.created")
×
1070
    TREASURY__OUTBOUND_TRANSFER__CREATED("treasury.outbound_transfer.created"),
1071

1072
    @SerializedName("treasury.outbound_transfer.expected_arrival_date_updated")
×
1073
    TREASURY__OUTBOUND_TRANSFER__EXPECTED_ARRIVAL_DATE_UPDATED(
1074
        "treasury.outbound_transfer.expected_arrival_date_updated"),
1075

1076
    @SerializedName("treasury.outbound_transfer.failed")
×
1077
    TREASURY__OUTBOUND_TRANSFER__FAILED("treasury.outbound_transfer.failed"),
1078

1079
    @SerializedName("treasury.outbound_transfer.posted")
×
1080
    TREASURY__OUTBOUND_TRANSFER__POSTED("treasury.outbound_transfer.posted"),
1081

1082
    @SerializedName("treasury.outbound_transfer.returned")
×
1083
    TREASURY__OUTBOUND_TRANSFER__RETURNED("treasury.outbound_transfer.returned"),
1084

1085
    @SerializedName("treasury.outbound_transfer.tracking_details_updated")
×
1086
    TREASURY__OUTBOUND_TRANSFER__TRACKING_DETAILS_UPDATED(
1087
        "treasury.outbound_transfer.tracking_details_updated"),
1088

1089
    @SerializedName("treasury.received_credit.created")
×
1090
    TREASURY__RECEIVED_CREDIT__CREATED("treasury.received_credit.created"),
1091

1092
    @SerializedName("treasury.received_credit.failed")
×
1093
    TREASURY__RECEIVED_CREDIT__FAILED("treasury.received_credit.failed"),
1094

1095
    @SerializedName("treasury.received_credit.succeeded")
×
1096
    TREASURY__RECEIVED_CREDIT__SUCCEEDED("treasury.received_credit.succeeded"),
1097

1098
    @SerializedName("treasury.received_debit.created")
×
1099
    TREASURY__RECEIVED_DEBIT__CREATED("treasury.received_debit.created");
1100

1101
    @Getter(onMethod_ = {@Override})
1102
    private final String value;
1103

1104
    EnabledEvent(String value) {
×
1105
      this.value = value;
×
1106
    }
×
1107
  }
1108
}
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

© 2025 Coveralls, Inc