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

stripe / stripe-java / #16707

14 Dec 2024 12:12AM UTC coverage: 15.91% (-0.08%) from 15.988%
#16707

Pull #1931

github

web-flow
Merge 90c2dfd77 into cf528f2c8
Pull Request #1931: Update generated code

43 of 1442 new or added lines in 28 files covered. (2.98%)

137 existing lines in 17 files now uncovered.

18625 of 117068 relevant lines covered (15.91%)

0.16 hits per line

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

63.68
/src/main/java/com/stripe/param/WebhookEndpointCreateParams.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 WebhookEndpointCreateParams extends ApiRequestParams {
15
  /**
16
   * Events sent to this endpoint will be generated with this Stripe Version instead of your
17
   * account's default Stripe Version.
18
   */
19
  @SerializedName("api_version")
20
  ApiVersion apiVersion;
21

22
  /**
23
   * Whether this endpoint should receive events from connected accounts ({@code true}), or from
24
   * your account ({@code false}). Defaults to {@code false}.
25
   */
26
  @SerializedName("connect")
27
  Boolean connect;
28

29
  /** An optional description of what the webhook is used for. */
30
  @SerializedName("description")
31
  Object description;
32

33
  /**
34
   * <strong>Required.</strong> The list of events to enable for this endpoint. You may specify
35
   * {@code ['*']} to enable all events, except those that require explicit selection.
36
   */
37
  @SerializedName("enabled_events")
38
  List<WebhookEndpointCreateParams.EnabledEvent> enabledEvents;
39

40
  /** Specifies which fields in the response should be expanded. */
41
  @SerializedName("expand")
42
  List<String> expand;
43

44
  /**
45
   * Map of extra parameters for custom features not available in this client library. The content
46
   * in this map is not serialized under this field's {@code @SerializedName} value. Instead, each
47
   * key/value pair is serialized as if the key is a root-level field (serialized) name in this
48
   * param object. Effectively, this map is flattened to its parent instance.
49
   */
50
  @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY)
51
  Map<String, Object> extraParams;
52

53
  /**
54
   * Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach
55
   * to an object. This can be useful for storing additional information about the object in a
56
   * structured format. Individual keys can be unset by posting an empty value to them. All keys can
57
   * be unset by posting an empty value to {@code metadata}.
58
   */
59
  @SerializedName("metadata")
60
  Object metadata;
61

62
  /** <strong>Required.</strong> The URL of the webhook endpoint. */
63
  @SerializedName("url")
64
  String url;
65

66
  private WebhookEndpointCreateParams(
67
      ApiVersion apiVersion,
68
      Boolean connect,
69
      Object description,
70
      List<WebhookEndpointCreateParams.EnabledEvent> enabledEvents,
71
      List<String> expand,
72
      Map<String, Object> extraParams,
73
      Object metadata,
74
      String url) {
1✔
75
    this.apiVersion = apiVersion;
1✔
76
    this.connect = connect;
1✔
77
    this.description = description;
1✔
78
    this.enabledEvents = enabledEvents;
1✔
79
    this.expand = expand;
1✔
80
    this.extraParams = extraParams;
1✔
81
    this.metadata = metadata;
1✔
82
    this.url = url;
1✔
83
  }
1✔
84

85
  public static Builder builder() {
86
    return new Builder();
1✔
87
  }
88

89
  public static class Builder {
1✔
90
    private ApiVersion apiVersion;
91

92
    private Boolean connect;
93

94
    private Object description;
95

96
    private List<WebhookEndpointCreateParams.EnabledEvent> enabledEvents;
97

98
    private List<String> expand;
99

100
    private Map<String, Object> extraParams;
101

102
    private Object metadata;
103

104
    private String url;
105

106
    /** Finalize and obtain parameter instance from this builder. */
107
    public WebhookEndpointCreateParams build() {
108
      return new WebhookEndpointCreateParams(
1✔
109
          this.apiVersion,
110
          this.connect,
111
          this.description,
112
          this.enabledEvents,
113
          this.expand,
114
          this.extraParams,
115
          this.metadata,
116
          this.url);
117
    }
118

119
    /**
120
     * Events sent to this endpoint will be generated with this Stripe Version instead of your
121
     * account's default Stripe Version.
122
     */
123
    public Builder setApiVersion(WebhookEndpointCreateParams.ApiVersion apiVersion) {
124
      this.apiVersion = apiVersion;
×
125
      return this;
×
126
    }
127

128
    /**
129
     * Whether this endpoint should receive events from connected accounts ({@code true}), or from
130
     * your account ({@code false}). Defaults to {@code false}.
131
     */
132
    public Builder setConnect(Boolean connect) {
133
      this.connect = connect;
×
134
      return this;
×
135
    }
136

137
    /** An optional description of what the webhook is used for. */
138
    public Builder setDescription(String description) {
139
      this.description = description;
×
140
      return this;
×
141
    }
142

143
    /** An optional description of what the webhook is used for. */
144
    public Builder setDescription(EmptyParam description) {
145
      this.description = description;
×
146
      return this;
×
147
    }
148

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

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

175
    /**
176
     * Add an element to `expand` list. A list is initialized for the first `add/addAll` call, and
177
     * subsequent calls adds additional elements to the original list. See {@link
178
     * WebhookEndpointCreateParams#expand} for the field documentation.
179
     */
180
    public Builder addExpand(String element) {
181
      if (this.expand == null) {
×
182
        this.expand = new ArrayList<>();
×
183
      }
184
      this.expand.add(element);
×
185
      return this;
×
186
    }
187

188
    /**
189
     * Add all elements to `expand` list. A list is initialized for the first `add/addAll` call, and
190
     * subsequent calls adds additional elements to the original list. See {@link
191
     * WebhookEndpointCreateParams#expand} for the field documentation.
192
     */
193
    public Builder addAllExpand(List<String> elements) {
194
      if (this.expand == null) {
×
195
        this.expand = new ArrayList<>();
×
196
      }
197
      this.expand.addAll(elements);
×
198
      return this;
×
199
    }
200

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

214
    /**
215
     * Add all map key/value pairs to `extraParams` 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 WebhookEndpointCreateParams#extraParams} for the field documentation.
218
     */
219
    public Builder putAllExtraParam(Map<String, Object> map) {
220
      if (this.extraParams == null) {
×
221
        this.extraParams = new HashMap<>();
×
222
      }
223
      this.extraParams.putAll(map);
×
224
      return this;
×
225
    }
226

227
    /**
228
     * Add a key/value pair to `metadata` map. A map is initialized for the first `put/putAll` call,
229
     * and subsequent calls add additional key/value pairs to the original map. See {@link
230
     * WebhookEndpointCreateParams#metadata} for the field documentation.
231
     */
232
    @SuppressWarnings("unchecked")
233
    public Builder putMetadata(String key, String value) {
234
      if (this.metadata == null || this.metadata instanceof EmptyParam) {
×
235
        this.metadata = new HashMap<String, String>();
×
236
      }
237
      ((Map<String, String>) this.metadata).put(key, value);
×
238
      return this;
×
239
    }
240

241
    /**
242
     * Add all map key/value pairs to `metadata` map. A map is initialized for the first
243
     * `put/putAll` call, and subsequent calls add additional key/value pairs to the original map.
244
     * See {@link WebhookEndpointCreateParams#metadata} for the field documentation.
245
     */
246
    @SuppressWarnings("unchecked")
247
    public Builder putAllMetadata(Map<String, String> map) {
248
      if (this.metadata == null || this.metadata instanceof EmptyParam) {
×
249
        this.metadata = new HashMap<String, String>();
×
250
      }
251
      ((Map<String, String>) this.metadata).putAll(map);
×
252
      return this;
×
253
    }
254

255
    /**
256
     * Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach
257
     * to an object. This can be useful for storing additional information about the object in a
258
     * structured format. Individual keys can be unset by posting an empty value to them. All keys
259
     * can be unset by posting an empty value to {@code metadata}.
260
     */
261
    public Builder setMetadata(EmptyParam metadata) {
262
      this.metadata = metadata;
×
263
      return this;
×
264
    }
265

266
    /**
267
     * Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach
268
     * to an object. This can be useful for storing additional information about the object in a
269
     * structured format. Individual keys can be unset by posting an empty value to them. All keys
270
     * can be unset by posting an empty value to {@code metadata}.
271
     */
272
    public Builder setMetadata(Map<String, String> metadata) {
273
      this.metadata = metadata;
×
274
      return this;
×
275
    }
276

277
    /** <strong>Required.</strong> The URL of the webhook endpoint. */
278
    public Builder setUrl(String url) {
279
      this.url = url;
1✔
280
      return this;
1✔
281
    }
282
  }
283

284
  public enum ApiVersion implements ApiRequestParams.EnumParam {
×
285
    @SerializedName("2011-01-01")
×
286
    VERSION_2011_01_01("2011-01-01"),
287

288
    @SerializedName("2011-06-21")
×
289
    VERSION_2011_06_21("2011-06-21"),
290

291
    @SerializedName("2011-06-28")
×
292
    VERSION_2011_06_28("2011-06-28"),
293

294
    @SerializedName("2011-08-01")
×
295
    VERSION_2011_08_01("2011-08-01"),
296

297
    @SerializedName("2011-09-15")
×
298
    VERSION_2011_09_15("2011-09-15"),
299

300
    @SerializedName("2011-11-17")
×
301
    VERSION_2011_11_17("2011-11-17"),
302

303
    @SerializedName("2012-02-23")
×
304
    VERSION_2012_02_23("2012-02-23"),
305

306
    @SerializedName("2012-03-25")
×
307
    VERSION_2012_03_25("2012-03-25"),
308

309
    @SerializedName("2012-06-18")
×
310
    VERSION_2012_06_18("2012-06-18"),
311

312
    @SerializedName("2012-06-28")
×
313
    VERSION_2012_06_28("2012-06-28"),
314

315
    @SerializedName("2012-07-09")
×
316
    VERSION_2012_07_09("2012-07-09"),
317

318
    @SerializedName("2012-09-24")
×
319
    VERSION_2012_09_24("2012-09-24"),
320

321
    @SerializedName("2012-10-26")
×
322
    VERSION_2012_10_26("2012-10-26"),
323

324
    @SerializedName("2012-11-07")
×
325
    VERSION_2012_11_07("2012-11-07"),
326

327
    @SerializedName("2013-02-11")
×
328
    VERSION_2013_02_11("2013-02-11"),
329

330
    @SerializedName("2013-02-13")
×
331
    VERSION_2013_02_13("2013-02-13"),
332

333
    @SerializedName("2013-07-05")
×
334
    VERSION_2013_07_05("2013-07-05"),
335

336
    @SerializedName("2013-08-12")
×
337
    VERSION_2013_08_12("2013-08-12"),
338

339
    @SerializedName("2013-08-13")
×
340
    VERSION_2013_08_13("2013-08-13"),
341

342
    @SerializedName("2013-10-29")
×
343
    VERSION_2013_10_29("2013-10-29"),
344

345
    @SerializedName("2013-12-03")
×
346
    VERSION_2013_12_03("2013-12-03"),
347

348
    @SerializedName("2014-01-31")
×
349
    VERSION_2014_01_31("2014-01-31"),
350

351
    @SerializedName("2014-03-13")
×
352
    VERSION_2014_03_13("2014-03-13"),
353

354
    @SerializedName("2014-03-28")
×
355
    VERSION_2014_03_28("2014-03-28"),
356

357
    @SerializedName("2014-05-19")
×
358
    VERSION_2014_05_19("2014-05-19"),
359

360
    @SerializedName("2014-06-13")
×
361
    VERSION_2014_06_13("2014-06-13"),
362

363
    @SerializedName("2014-06-17")
×
364
    VERSION_2014_06_17("2014-06-17"),
365

366
    @SerializedName("2014-07-22")
×
367
    VERSION_2014_07_22("2014-07-22"),
368

369
    @SerializedName("2014-07-26")
×
370
    VERSION_2014_07_26("2014-07-26"),
371

372
    @SerializedName("2014-08-04")
×
373
    VERSION_2014_08_04("2014-08-04"),
374

375
    @SerializedName("2014-08-20")
×
376
    VERSION_2014_08_20("2014-08-20"),
377

378
    @SerializedName("2014-09-08")
×
379
    VERSION_2014_09_08("2014-09-08"),
380

381
    @SerializedName("2014-10-07")
×
382
    VERSION_2014_10_07("2014-10-07"),
383

384
    @SerializedName("2014-11-05")
×
385
    VERSION_2014_11_05("2014-11-05"),
386

387
    @SerializedName("2014-11-20")
×
388
    VERSION_2014_11_20("2014-11-20"),
389

390
    @SerializedName("2014-12-08")
×
391
    VERSION_2014_12_08("2014-12-08"),
392

393
    @SerializedName("2014-12-17")
×
394
    VERSION_2014_12_17("2014-12-17"),
395

396
    @SerializedName("2014-12-22")
×
397
    VERSION_2014_12_22("2014-12-22"),
398

399
    @SerializedName("2015-01-11")
×
400
    VERSION_2015_01_11("2015-01-11"),
401

402
    @SerializedName("2015-01-26")
×
403
    VERSION_2015_01_26("2015-01-26"),
404

405
    @SerializedName("2015-02-10")
×
406
    VERSION_2015_02_10("2015-02-10"),
407

408
    @SerializedName("2015-02-16")
×
409
    VERSION_2015_02_16("2015-02-16"),
410

411
    @SerializedName("2015-02-18")
×
412
    VERSION_2015_02_18("2015-02-18"),
413

414
    @SerializedName("2015-03-24")
×
415
    VERSION_2015_03_24("2015-03-24"),
416

417
    @SerializedName("2015-04-07")
×
418
    VERSION_2015_04_07("2015-04-07"),
419

420
    @SerializedName("2015-06-15")
×
421
    VERSION_2015_06_15("2015-06-15"),
422

423
    @SerializedName("2015-07-07")
×
424
    VERSION_2015_07_07("2015-07-07"),
425

426
    @SerializedName("2015-07-13")
×
427
    VERSION_2015_07_13("2015-07-13"),
428

429
    @SerializedName("2015-07-28")
×
430
    VERSION_2015_07_28("2015-07-28"),
431

432
    @SerializedName("2015-08-07")
×
433
    VERSION_2015_08_07("2015-08-07"),
434

435
    @SerializedName("2015-08-19")
×
436
    VERSION_2015_08_19("2015-08-19"),
437

438
    @SerializedName("2015-09-03")
×
439
    VERSION_2015_09_03("2015-09-03"),
440

441
    @SerializedName("2015-09-08")
×
442
    VERSION_2015_09_08("2015-09-08"),
443

444
    @SerializedName("2015-09-23")
×
445
    VERSION_2015_09_23("2015-09-23"),
446

447
    @SerializedName("2015-10-01")
×
448
    VERSION_2015_10_01("2015-10-01"),
449

450
    @SerializedName("2015-10-12")
×
451
    VERSION_2015_10_12("2015-10-12"),
452

453
    @SerializedName("2015-10-16")
×
454
    VERSION_2015_10_16("2015-10-16"),
455

456
    @SerializedName("2016-02-03")
×
457
    VERSION_2016_02_03("2016-02-03"),
458

459
    @SerializedName("2016-02-19")
×
460
    VERSION_2016_02_19("2016-02-19"),
461

462
    @SerializedName("2016-02-22")
×
463
    VERSION_2016_02_22("2016-02-22"),
464

465
    @SerializedName("2016-02-23")
×
466
    VERSION_2016_02_23("2016-02-23"),
467

468
    @SerializedName("2016-02-29")
×
469
    VERSION_2016_02_29("2016-02-29"),
470

471
    @SerializedName("2016-03-07")
×
472
    VERSION_2016_03_07("2016-03-07"),
473

474
    @SerializedName("2016-06-15")
×
475
    VERSION_2016_06_15("2016-06-15"),
476

477
    @SerializedName("2016-07-06")
×
478
    VERSION_2016_07_06("2016-07-06"),
479

480
    @SerializedName("2016-10-19")
×
481
    VERSION_2016_10_19("2016-10-19"),
482

483
    @SerializedName("2017-01-27")
×
484
    VERSION_2017_01_27("2017-01-27"),
485

486
    @SerializedName("2017-02-14")
×
487
    VERSION_2017_02_14("2017-02-14"),
488

489
    @SerializedName("2017-04-06")
×
490
    VERSION_2017_04_06("2017-04-06"),
491

492
    @SerializedName("2017-05-25")
×
493
    VERSION_2017_05_25("2017-05-25"),
494

495
    @SerializedName("2017-06-05")
×
496
    VERSION_2017_06_05("2017-06-05"),
497

498
    @SerializedName("2017-08-15")
×
499
    VERSION_2017_08_15("2017-08-15"),
500

501
    @SerializedName("2017-12-14")
×
502
    VERSION_2017_12_14("2017-12-14"),
503

504
    @SerializedName("2018-01-23")
×
505
    VERSION_2018_01_23("2018-01-23"),
506

507
    @SerializedName("2018-02-05")
×
508
    VERSION_2018_02_05("2018-02-05"),
509

510
    @SerializedName("2018-02-06")
×
511
    VERSION_2018_02_06("2018-02-06"),
512

513
    @SerializedName("2018-02-28")
×
514
    VERSION_2018_02_28("2018-02-28"),
515

516
    @SerializedName("2018-05-21")
×
517
    VERSION_2018_05_21("2018-05-21"),
518

519
    @SerializedName("2018-07-27")
×
520
    VERSION_2018_07_27("2018-07-27"),
521

522
    @SerializedName("2018-08-23")
×
523
    VERSION_2018_08_23("2018-08-23"),
524

525
    @SerializedName("2018-09-06")
×
526
    VERSION_2018_09_06("2018-09-06"),
527

528
    @SerializedName("2018-09-24")
×
529
    VERSION_2018_09_24("2018-09-24"),
530

531
    @SerializedName("2018-10-31")
×
532
    VERSION_2018_10_31("2018-10-31"),
533

534
    @SerializedName("2018-11-08")
×
535
    VERSION_2018_11_08("2018-11-08"),
536

537
    @SerializedName("2019-02-11")
×
538
    VERSION_2019_02_11("2019-02-11"),
539

540
    @SerializedName("2019-02-19")
×
541
    VERSION_2019_02_19("2019-02-19"),
542

543
    @SerializedName("2019-03-14")
×
544
    VERSION_2019_03_14("2019-03-14"),
545

546
    @SerializedName("2019-05-16")
×
547
    VERSION_2019_05_16("2019-05-16"),
548

549
    @SerializedName("2019-08-14")
×
550
    VERSION_2019_08_14("2019-08-14"),
551

552
    @SerializedName("2019-09-09")
×
553
    VERSION_2019_09_09("2019-09-09"),
554

555
    @SerializedName("2019-10-08")
×
556
    VERSION_2019_10_08("2019-10-08"),
557

558
    @SerializedName("2019-10-17")
×
559
    VERSION_2019_10_17("2019-10-17"),
560

561
    @SerializedName("2019-11-05")
×
562
    VERSION_2019_11_05("2019-11-05"),
563

564
    @SerializedName("2019-12-03")
×
565
    VERSION_2019_12_03("2019-12-03"),
566

567
    @SerializedName("2020-03-02")
×
568
    VERSION_2020_03_02("2020-03-02"),
569

570
    @SerializedName("2020-08-27")
×
571
    VERSION_2020_08_27("2020-08-27"),
572

573
    @SerializedName("2022-08-01")
×
574
    VERSION_2022_08_01("2022-08-01"),
575

576
    @SerializedName("2022-11-15")
×
577
    VERSION_2022_11_15("2022-11-15"),
578

579
    @SerializedName("2023-08-16")
×
580
    VERSION_2023_08_16("2023-08-16"),
581

582
    @SerializedName("2023-10-16")
×
583
    VERSION_2023_10_16("2023-10-16"),
584

585
    @SerializedName("2024-04-10")
×
586
    VERSION_2024_04_10("2024-04-10"),
587

588
    @SerializedName("2024-06-20")
×
589
    VERSION_2024_06_20("2024-06-20"),
590

591
    @SerializedName("2024-09-30.acacia")
×
592
    VERSION_2024_09_30_ACACIA("2024-09-30.acacia"),
593

594
    @SerializedName("2024-10-28.acacia")
×
595
    VERSION_2024_10_28_ACACIA("2024-10-28.acacia"),
596

597
    @SerializedName("2024-11-20.acacia")
×
598
    VERSION_2024_11_20_ACACIA("2024-11-20.acacia"),
599

NEW
600
    @SerializedName("2024-12-18.acacia")
×
601
    VERSION_2024_12_18_ACACIA("2024-12-18.acacia");
602

603
    @Getter(onMethod_ = {@Override})
604
    private final String value;
605

606
    ApiVersion(String value) {
×
607
      this.value = value;
×
608
    }
×
609
  }
610

611
  public enum EnabledEvent implements ApiRequestParams.EnumParam {
1✔
612
    @SerializedName("*")
1✔
613
    ALL("*"),
614

615
    @SerializedName("account.application.authorized")
1✔
616
    ACCOUNT__APPLICATION__AUTHORIZED("account.application.authorized"),
617

618
    @SerializedName("account.application.deauthorized")
1✔
619
    ACCOUNT__APPLICATION__DEAUTHORIZED("account.application.deauthorized"),
620

621
    @SerializedName("account.external_account.created")
1✔
622
    ACCOUNT__EXTERNAL_ACCOUNT__CREATED("account.external_account.created"),
623

624
    @SerializedName("account.external_account.deleted")
1✔
625
    ACCOUNT__EXTERNAL_ACCOUNT__DELETED("account.external_account.deleted"),
626

627
    @SerializedName("account.external_account.updated")
1✔
628
    ACCOUNT__EXTERNAL_ACCOUNT__UPDATED("account.external_account.updated"),
629

630
    @SerializedName("account.updated")
1✔
631
    ACCOUNT__UPDATED("account.updated"),
632

633
    @SerializedName("application_fee.created")
1✔
634
    APPLICATION_FEE__CREATED("application_fee.created"),
635

636
    @SerializedName("application_fee.refund.updated")
1✔
637
    APPLICATION_FEE__REFUND__UPDATED("application_fee.refund.updated"),
638

639
    @SerializedName("application_fee.refunded")
1✔
640
    APPLICATION_FEE__REFUNDED("application_fee.refunded"),
641

642
    @SerializedName("balance.available")
1✔
643
    BALANCE__AVAILABLE("balance.available"),
644

645
    @SerializedName("billing.alert.triggered")
1✔
646
    BILLING__ALERT__TRIGGERED("billing.alert.triggered"),
647

648
    @SerializedName("billing_portal.configuration.created")
1✔
649
    BILLING_PORTAL__CONFIGURATION__CREATED("billing_portal.configuration.created"),
650

651
    @SerializedName("billing_portal.configuration.updated")
1✔
652
    BILLING_PORTAL__CONFIGURATION__UPDATED("billing_portal.configuration.updated"),
653

654
    @SerializedName("billing_portal.session.created")
1✔
655
    BILLING_PORTAL__SESSION__CREATED("billing_portal.session.created"),
656

657
    @SerializedName("capability.updated")
1✔
658
    CAPABILITY__UPDATED("capability.updated"),
659

660
    @SerializedName("cash_balance.funds_available")
1✔
661
    CASH_BALANCE__FUNDS_AVAILABLE("cash_balance.funds_available"),
662

663
    @SerializedName("charge.captured")
1✔
664
    CHARGE__CAPTURED("charge.captured"),
665

666
    @SerializedName("charge.dispute.closed")
1✔
667
    CHARGE__DISPUTE__CLOSED("charge.dispute.closed"),
668

669
    @SerializedName("charge.dispute.created")
1✔
670
    CHARGE__DISPUTE__CREATED("charge.dispute.created"),
671

672
    @SerializedName("charge.dispute.funds_reinstated")
1✔
673
    CHARGE__DISPUTE__FUNDS_REINSTATED("charge.dispute.funds_reinstated"),
674

675
    @SerializedName("charge.dispute.funds_withdrawn")
1✔
676
    CHARGE__DISPUTE__FUNDS_WITHDRAWN("charge.dispute.funds_withdrawn"),
677

678
    @SerializedName("charge.dispute.updated")
1✔
679
    CHARGE__DISPUTE__UPDATED("charge.dispute.updated"),
680

681
    @SerializedName("charge.expired")
1✔
682
    CHARGE__EXPIRED("charge.expired"),
683

684
    @SerializedName("charge.failed")
1✔
685
    CHARGE__FAILED("charge.failed"),
686

687
    @SerializedName("charge.pending")
1✔
688
    CHARGE__PENDING("charge.pending"),
689

690
    @SerializedName("charge.refund.updated")
1✔
691
    CHARGE__REFUND__UPDATED("charge.refund.updated"),
692

693
    @SerializedName("charge.refunded")
1✔
694
    CHARGE__REFUNDED("charge.refunded"),
695

696
    @SerializedName("charge.succeeded")
1✔
697
    CHARGE__SUCCEEDED("charge.succeeded"),
698

699
    @SerializedName("charge.updated")
1✔
700
    CHARGE__UPDATED("charge.updated"),
701

702
    @SerializedName("checkout.session.async_payment_failed")
1✔
703
    CHECKOUT__SESSION__ASYNC_PAYMENT_FAILED("checkout.session.async_payment_failed"),
704

705
    @SerializedName("checkout.session.async_payment_succeeded")
1✔
706
    CHECKOUT__SESSION__ASYNC_PAYMENT_SUCCEEDED("checkout.session.async_payment_succeeded"),
707

708
    @SerializedName("checkout.session.completed")
1✔
709
    CHECKOUT__SESSION__COMPLETED("checkout.session.completed"),
710

711
    @SerializedName("checkout.session.expired")
1✔
712
    CHECKOUT__SESSION__EXPIRED("checkout.session.expired"),
713

714
    @SerializedName("climate.order.canceled")
1✔
715
    CLIMATE__ORDER__CANCELED("climate.order.canceled"),
716

717
    @SerializedName("climate.order.created")
1✔
718
    CLIMATE__ORDER__CREATED("climate.order.created"),
719

720
    @SerializedName("climate.order.delayed")
1✔
721
    CLIMATE__ORDER__DELAYED("climate.order.delayed"),
722

723
    @SerializedName("climate.order.delivered")
1✔
724
    CLIMATE__ORDER__DELIVERED("climate.order.delivered"),
725

726
    @SerializedName("climate.order.product_substituted")
1✔
727
    CLIMATE__ORDER__PRODUCT_SUBSTITUTED("climate.order.product_substituted"),
728

729
    @SerializedName("climate.product.created")
1✔
730
    CLIMATE__PRODUCT__CREATED("climate.product.created"),
731

732
    @SerializedName("climate.product.pricing_updated")
1✔
733
    CLIMATE__PRODUCT__PRICING_UPDATED("climate.product.pricing_updated"),
734

735
    @SerializedName("coupon.created")
1✔
736
    COUPON__CREATED("coupon.created"),
737

738
    @SerializedName("coupon.deleted")
1✔
739
    COUPON__DELETED("coupon.deleted"),
740

741
    @SerializedName("coupon.updated")
1✔
742
    COUPON__UPDATED("coupon.updated"),
743

744
    @SerializedName("credit_note.created")
1✔
745
    CREDIT_NOTE__CREATED("credit_note.created"),
746

747
    @SerializedName("credit_note.updated")
1✔
748
    CREDIT_NOTE__UPDATED("credit_note.updated"),
749

750
    @SerializedName("credit_note.voided")
1✔
751
    CREDIT_NOTE__VOIDED("credit_note.voided"),
752

753
    @SerializedName("customer.created")
1✔
754
    CUSTOMER__CREATED("customer.created"),
755

756
    @SerializedName("customer.deleted")
1✔
757
    CUSTOMER__DELETED("customer.deleted"),
758

759
    @SerializedName("customer.discount.created")
1✔
760
    CUSTOMER__DISCOUNT__CREATED("customer.discount.created"),
761

762
    @SerializedName("customer.discount.deleted")
1✔
763
    CUSTOMER__DISCOUNT__DELETED("customer.discount.deleted"),
764

765
    @SerializedName("customer.discount.updated")
1✔
766
    CUSTOMER__DISCOUNT__UPDATED("customer.discount.updated"),
767

768
    @SerializedName("customer.source.created")
1✔
769
    CUSTOMER__SOURCE__CREATED("customer.source.created"),
770

771
    @SerializedName("customer.source.deleted")
1✔
772
    CUSTOMER__SOURCE__DELETED("customer.source.deleted"),
773

774
    @SerializedName("customer.source.expiring")
1✔
775
    CUSTOMER__SOURCE__EXPIRING("customer.source.expiring"),
776

777
    @SerializedName("customer.source.updated")
1✔
778
    CUSTOMER__SOURCE__UPDATED("customer.source.updated"),
779

780
    @SerializedName("customer.subscription.created")
1✔
781
    CUSTOMER__SUBSCRIPTION__CREATED("customer.subscription.created"),
782

783
    @SerializedName("customer.subscription.deleted")
1✔
784
    CUSTOMER__SUBSCRIPTION__DELETED("customer.subscription.deleted"),
785

786
    @SerializedName("customer.subscription.paused")
1✔
787
    CUSTOMER__SUBSCRIPTION__PAUSED("customer.subscription.paused"),
788

789
    @SerializedName("customer.subscription.pending_update_applied")
1✔
790
    CUSTOMER__SUBSCRIPTION__PENDING_UPDATE_APPLIED("customer.subscription.pending_update_applied"),
791

792
    @SerializedName("customer.subscription.pending_update_expired")
1✔
793
    CUSTOMER__SUBSCRIPTION__PENDING_UPDATE_EXPIRED("customer.subscription.pending_update_expired"),
794

795
    @SerializedName("customer.subscription.resumed")
1✔
796
    CUSTOMER__SUBSCRIPTION__RESUMED("customer.subscription.resumed"),
797

798
    @SerializedName("customer.subscription.trial_will_end")
1✔
799
    CUSTOMER__SUBSCRIPTION__TRIAL_WILL_END("customer.subscription.trial_will_end"),
800

801
    @SerializedName("customer.subscription.updated")
1✔
802
    CUSTOMER__SUBSCRIPTION__UPDATED("customer.subscription.updated"),
803

804
    @SerializedName("customer.tax_id.created")
1✔
805
    CUSTOMER__TAX_ID__CREATED("customer.tax_id.created"),
806

807
    @SerializedName("customer.tax_id.deleted")
1✔
808
    CUSTOMER__TAX_ID__DELETED("customer.tax_id.deleted"),
809

810
    @SerializedName("customer.tax_id.updated")
1✔
811
    CUSTOMER__TAX_ID__UPDATED("customer.tax_id.updated"),
812

813
    @SerializedName("customer.updated")
1✔
814
    CUSTOMER__UPDATED("customer.updated"),
815

816
    @SerializedName("customer_cash_balance_transaction.created")
1✔
817
    CUSTOMER_CASH_BALANCE_TRANSACTION__CREATED("customer_cash_balance_transaction.created"),
818

819
    @SerializedName("entitlements.active_entitlement_summary.updated")
1✔
820
    ENTITLEMENTS__ACTIVE_ENTITLEMENT_SUMMARY__UPDATED(
821
        "entitlements.active_entitlement_summary.updated"),
822

823
    @SerializedName("file.created")
1✔
824
    FILE__CREATED("file.created"),
825

826
    @SerializedName("financial_connections.account.created")
1✔
827
    FINANCIAL_CONNECTIONS__ACCOUNT__CREATED("financial_connections.account.created"),
828

829
    @SerializedName("financial_connections.account.deactivated")
1✔
830
    FINANCIAL_CONNECTIONS__ACCOUNT__DEACTIVATED("financial_connections.account.deactivated"),
831

832
    @SerializedName("financial_connections.account.disconnected")
1✔
833
    FINANCIAL_CONNECTIONS__ACCOUNT__DISCONNECTED("financial_connections.account.disconnected"),
834

835
    @SerializedName("financial_connections.account.reactivated")
1✔
836
    FINANCIAL_CONNECTIONS__ACCOUNT__REACTIVATED("financial_connections.account.reactivated"),
837

838
    @SerializedName("financial_connections.account.refreshed_balance")
1✔
839
    FINANCIAL_CONNECTIONS__ACCOUNT__REFRESHED_BALANCE(
840
        "financial_connections.account.refreshed_balance"),
841

842
    @SerializedName("financial_connections.account.refreshed_ownership")
1✔
843
    FINANCIAL_CONNECTIONS__ACCOUNT__REFRESHED_OWNERSHIP(
844
        "financial_connections.account.refreshed_ownership"),
845

846
    @SerializedName("financial_connections.account.refreshed_transactions")
1✔
847
    FINANCIAL_CONNECTIONS__ACCOUNT__REFRESHED_TRANSACTIONS(
848
        "financial_connections.account.refreshed_transactions"),
849

850
    @SerializedName("identity.verification_session.canceled")
1✔
851
    IDENTITY__VERIFICATION_SESSION__CANCELED("identity.verification_session.canceled"),
852

853
    @SerializedName("identity.verification_session.created")
1✔
854
    IDENTITY__VERIFICATION_SESSION__CREATED("identity.verification_session.created"),
855

856
    @SerializedName("identity.verification_session.processing")
1✔
857
    IDENTITY__VERIFICATION_SESSION__PROCESSING("identity.verification_session.processing"),
858

859
    @SerializedName("identity.verification_session.redacted")
1✔
860
    IDENTITY__VERIFICATION_SESSION__REDACTED("identity.verification_session.redacted"),
861

862
    @SerializedName("identity.verification_session.requires_input")
1✔
863
    IDENTITY__VERIFICATION_SESSION__REQUIRES_INPUT("identity.verification_session.requires_input"),
864

865
    @SerializedName("identity.verification_session.verified")
1✔
866
    IDENTITY__VERIFICATION_SESSION__VERIFIED("identity.verification_session.verified"),
867

868
    @SerializedName("invoice.created")
1✔
869
    INVOICE__CREATED("invoice.created"),
870

871
    @SerializedName("invoice.deleted")
1✔
872
    INVOICE__DELETED("invoice.deleted"),
873

874
    @SerializedName("invoice.finalization_failed")
1✔
875
    INVOICE__FINALIZATION_FAILED("invoice.finalization_failed"),
876

877
    @SerializedName("invoice.finalized")
1✔
878
    INVOICE__FINALIZED("invoice.finalized"),
879

880
    @SerializedName("invoice.marked_uncollectible")
1✔
881
    INVOICE__MARKED_UNCOLLECTIBLE("invoice.marked_uncollectible"),
882

883
    @SerializedName("invoice.overdue")
1✔
884
    INVOICE__OVERDUE("invoice.overdue"),
885

886
    @SerializedName("invoice.paid")
1✔
887
    INVOICE__PAID("invoice.paid"),
888

889
    @SerializedName("invoice.payment_action_required")
1✔
890
    INVOICE__PAYMENT_ACTION_REQUIRED("invoice.payment_action_required"),
891

892
    @SerializedName("invoice.payment_failed")
1✔
893
    INVOICE__PAYMENT_FAILED("invoice.payment_failed"),
894

895
    @SerializedName("invoice.payment_succeeded")
1✔
896
    INVOICE__PAYMENT_SUCCEEDED("invoice.payment_succeeded"),
897

898
    @SerializedName("invoice.sent")
1✔
899
    INVOICE__SENT("invoice.sent"),
900

901
    @SerializedName("invoice.upcoming")
1✔
902
    INVOICE__UPCOMING("invoice.upcoming"),
903

904
    @SerializedName("invoice.updated")
1✔
905
    INVOICE__UPDATED("invoice.updated"),
906

907
    @SerializedName("invoice.voided")
1✔
908
    INVOICE__VOIDED("invoice.voided"),
909

910
    @SerializedName("invoice.will_be_due")
1✔
911
    INVOICE__WILL_BE_DUE("invoice.will_be_due"),
912

913
    @SerializedName("invoiceitem.created")
1✔
914
    INVOICEITEM__CREATED("invoiceitem.created"),
915

916
    @SerializedName("invoiceitem.deleted")
1✔
917
    INVOICEITEM__DELETED("invoiceitem.deleted"),
918

919
    @SerializedName("issuing_authorization.created")
1✔
920
    ISSUING_AUTHORIZATION__CREATED("issuing_authorization.created"),
921

922
    @SerializedName("issuing_authorization.request")
1✔
923
    ISSUING_AUTHORIZATION__REQUEST("issuing_authorization.request"),
924

925
    @SerializedName("issuing_authorization.updated")
1✔
926
    ISSUING_AUTHORIZATION__UPDATED("issuing_authorization.updated"),
927

928
    @SerializedName("issuing_card.created")
1✔
929
    ISSUING_CARD__CREATED("issuing_card.created"),
930

931
    @SerializedName("issuing_card.updated")
1✔
932
    ISSUING_CARD__UPDATED("issuing_card.updated"),
933

934
    @SerializedName("issuing_cardholder.created")
1✔
935
    ISSUING_CARDHOLDER__CREATED("issuing_cardholder.created"),
936

937
    @SerializedName("issuing_cardholder.updated")
1✔
938
    ISSUING_CARDHOLDER__UPDATED("issuing_cardholder.updated"),
939

940
    @SerializedName("issuing_dispute.closed")
1✔
941
    ISSUING_DISPUTE__CLOSED("issuing_dispute.closed"),
942

943
    @SerializedName("issuing_dispute.created")
1✔
944
    ISSUING_DISPUTE__CREATED("issuing_dispute.created"),
945

946
    @SerializedName("issuing_dispute.funds_reinstated")
1✔
947
    ISSUING_DISPUTE__FUNDS_REINSTATED("issuing_dispute.funds_reinstated"),
948

949
    @SerializedName("issuing_dispute.funds_rescinded")
1✔
950
    ISSUING_DISPUTE__FUNDS_RESCINDED("issuing_dispute.funds_rescinded"),
951

952
    @SerializedName("issuing_dispute.submitted")
1✔
953
    ISSUING_DISPUTE__SUBMITTED("issuing_dispute.submitted"),
954

955
    @SerializedName("issuing_dispute.updated")
1✔
956
    ISSUING_DISPUTE__UPDATED("issuing_dispute.updated"),
957

958
    @SerializedName("issuing_personalization_design.activated")
1✔
959
    ISSUING_PERSONALIZATION_DESIGN__ACTIVATED("issuing_personalization_design.activated"),
960

961
    @SerializedName("issuing_personalization_design.deactivated")
1✔
962
    ISSUING_PERSONALIZATION_DESIGN__DEACTIVATED("issuing_personalization_design.deactivated"),
963

964
    @SerializedName("issuing_personalization_design.rejected")
1✔
965
    ISSUING_PERSONALIZATION_DESIGN__REJECTED("issuing_personalization_design.rejected"),
966

967
    @SerializedName("issuing_personalization_design.updated")
1✔
968
    ISSUING_PERSONALIZATION_DESIGN__UPDATED("issuing_personalization_design.updated"),
969

970
    @SerializedName("issuing_token.created")
1✔
971
    ISSUING_TOKEN__CREATED("issuing_token.created"),
972

973
    @SerializedName("issuing_token.updated")
1✔
974
    ISSUING_TOKEN__UPDATED("issuing_token.updated"),
975

976
    @SerializedName("issuing_transaction.created")
1✔
977
    ISSUING_TRANSACTION__CREATED("issuing_transaction.created"),
978

979
    @SerializedName("issuing_transaction.purchase_details_receipt_updated")
1✔
980
    ISSUING_TRANSACTION__PURCHASE_DETAILS_RECEIPT_UPDATED(
981
        "issuing_transaction.purchase_details_receipt_updated"),
982

983
    @SerializedName("issuing_transaction.updated")
1✔
984
    ISSUING_TRANSACTION__UPDATED("issuing_transaction.updated"),
985

986
    @SerializedName("mandate.updated")
1✔
987
    MANDATE__UPDATED("mandate.updated"),
988

989
    @SerializedName("payment_intent.amount_capturable_updated")
1✔
990
    PAYMENT_INTENT__AMOUNT_CAPTURABLE_UPDATED("payment_intent.amount_capturable_updated"),
991

992
    @SerializedName("payment_intent.canceled")
1✔
993
    PAYMENT_INTENT__CANCELED("payment_intent.canceled"),
994

995
    @SerializedName("payment_intent.created")
1✔
996
    PAYMENT_INTENT__CREATED("payment_intent.created"),
997

998
    @SerializedName("payment_intent.partially_funded")
1✔
999
    PAYMENT_INTENT__PARTIALLY_FUNDED("payment_intent.partially_funded"),
1000

1001
    @SerializedName("payment_intent.payment_failed")
1✔
1002
    PAYMENT_INTENT__PAYMENT_FAILED("payment_intent.payment_failed"),
1003

1004
    @SerializedName("payment_intent.processing")
1✔
1005
    PAYMENT_INTENT__PROCESSING("payment_intent.processing"),
1006

1007
    @SerializedName("payment_intent.requires_action")
1✔
1008
    PAYMENT_INTENT__REQUIRES_ACTION("payment_intent.requires_action"),
1009

1010
    @SerializedName("payment_intent.succeeded")
1✔
1011
    PAYMENT_INTENT__SUCCEEDED("payment_intent.succeeded"),
1012

1013
    @SerializedName("payment_link.created")
1✔
1014
    PAYMENT_LINK__CREATED("payment_link.created"),
1015

1016
    @SerializedName("payment_link.updated")
1✔
1017
    PAYMENT_LINK__UPDATED("payment_link.updated"),
1018

1019
    @SerializedName("payment_method.attached")
1✔
1020
    PAYMENT_METHOD__ATTACHED("payment_method.attached"),
1021

1022
    @SerializedName("payment_method.automatically_updated")
1✔
1023
    PAYMENT_METHOD__AUTOMATICALLY_UPDATED("payment_method.automatically_updated"),
1024

1025
    @SerializedName("payment_method.detached")
1✔
1026
    PAYMENT_METHOD__DETACHED("payment_method.detached"),
1027

1028
    @SerializedName("payment_method.updated")
1✔
1029
    PAYMENT_METHOD__UPDATED("payment_method.updated"),
1030

1031
    @SerializedName("payout.canceled")
1✔
1032
    PAYOUT__CANCELED("payout.canceled"),
1033

1034
    @SerializedName("payout.created")
1✔
1035
    PAYOUT__CREATED("payout.created"),
1036

1037
    @SerializedName("payout.failed")
1✔
1038
    PAYOUT__FAILED("payout.failed"),
1039

1040
    @SerializedName("payout.paid")
1✔
1041
    PAYOUT__PAID("payout.paid"),
1042

1043
    @SerializedName("payout.reconciliation_completed")
1✔
1044
    PAYOUT__RECONCILIATION_COMPLETED("payout.reconciliation_completed"),
1045

1046
    @SerializedName("payout.updated")
1✔
1047
    PAYOUT__UPDATED("payout.updated"),
1048

1049
    @SerializedName("person.created")
1✔
1050
    PERSON__CREATED("person.created"),
1051

1052
    @SerializedName("person.deleted")
1✔
1053
    PERSON__DELETED("person.deleted"),
1054

1055
    @SerializedName("person.updated")
1✔
1056
    PERSON__UPDATED("person.updated"),
1057

1058
    @SerializedName("plan.created")
1✔
1059
    PLAN__CREATED("plan.created"),
1060

1061
    @SerializedName("plan.deleted")
1✔
1062
    PLAN__DELETED("plan.deleted"),
1063

1064
    @SerializedName("plan.updated")
1✔
1065
    PLAN__UPDATED("plan.updated"),
1066

1067
    @SerializedName("price.created")
1✔
1068
    PRICE__CREATED("price.created"),
1069

1070
    @SerializedName("price.deleted")
1✔
1071
    PRICE__DELETED("price.deleted"),
1072

1073
    @SerializedName("price.updated")
1✔
1074
    PRICE__UPDATED("price.updated"),
1075

1076
    @SerializedName("product.created")
1✔
1077
    PRODUCT__CREATED("product.created"),
1078

1079
    @SerializedName("product.deleted")
1✔
1080
    PRODUCT__DELETED("product.deleted"),
1081

1082
    @SerializedName("product.updated")
1✔
1083
    PRODUCT__UPDATED("product.updated"),
1084

1085
    @SerializedName("promotion_code.created")
1✔
1086
    PROMOTION_CODE__CREATED("promotion_code.created"),
1087

1088
    @SerializedName("promotion_code.updated")
1✔
1089
    PROMOTION_CODE__UPDATED("promotion_code.updated"),
1090

1091
    @SerializedName("quote.accepted")
1✔
1092
    QUOTE__ACCEPTED("quote.accepted"),
1093

1094
    @SerializedName("quote.canceled")
1✔
1095
    QUOTE__CANCELED("quote.canceled"),
1096

1097
    @SerializedName("quote.created")
1✔
1098
    QUOTE__CREATED("quote.created"),
1099

1100
    @SerializedName("quote.finalized")
1✔
1101
    QUOTE__FINALIZED("quote.finalized"),
1102

1103
    @SerializedName("radar.early_fraud_warning.created")
1✔
1104
    RADAR__EARLY_FRAUD_WARNING__CREATED("radar.early_fraud_warning.created"),
1105

1106
    @SerializedName("radar.early_fraud_warning.updated")
1✔
1107
    RADAR__EARLY_FRAUD_WARNING__UPDATED("radar.early_fraud_warning.updated"),
1108

1109
    @SerializedName("refund.created")
1✔
1110
    REFUND__CREATED("refund.created"),
1111

1112
    @SerializedName("refund.failed")
1✔
1113
    REFUND__FAILED("refund.failed"),
1114

1115
    @SerializedName("refund.updated")
1✔
1116
    REFUND__UPDATED("refund.updated"),
1117

1118
    @SerializedName("reporting.report_run.failed")
1✔
1119
    REPORTING__REPORT_RUN__FAILED("reporting.report_run.failed"),
1120

1121
    @SerializedName("reporting.report_run.succeeded")
1✔
1122
    REPORTING__REPORT_RUN__SUCCEEDED("reporting.report_run.succeeded"),
1123

1124
    @SerializedName("reporting.report_type.updated")
1✔
1125
    REPORTING__REPORT_TYPE__UPDATED("reporting.report_type.updated"),
1126

1127
    @SerializedName("review.closed")
1✔
1128
    REVIEW__CLOSED("review.closed"),
1129

1130
    @SerializedName("review.opened")
1✔
1131
    REVIEW__OPENED("review.opened"),
1132

1133
    @SerializedName("setup_intent.canceled")
1✔
1134
    SETUP_INTENT__CANCELED("setup_intent.canceled"),
1135

1136
    @SerializedName("setup_intent.created")
1✔
1137
    SETUP_INTENT__CREATED("setup_intent.created"),
1138

1139
    @SerializedName("setup_intent.requires_action")
1✔
1140
    SETUP_INTENT__REQUIRES_ACTION("setup_intent.requires_action"),
1141

1142
    @SerializedName("setup_intent.setup_failed")
1✔
1143
    SETUP_INTENT__SETUP_FAILED("setup_intent.setup_failed"),
1144

1145
    @SerializedName("setup_intent.succeeded")
1✔
1146
    SETUP_INTENT__SUCCEEDED("setup_intent.succeeded"),
1147

1148
    @SerializedName("sigma.scheduled_query_run.created")
1✔
1149
    SIGMA__SCHEDULED_QUERY_RUN__CREATED("sigma.scheduled_query_run.created"),
1150

1151
    @SerializedName("source.canceled")
1✔
1152
    SOURCE__CANCELED("source.canceled"),
1153

1154
    @SerializedName("source.chargeable")
1✔
1155
    SOURCE__CHARGEABLE("source.chargeable"),
1156

1157
    @SerializedName("source.failed")
1✔
1158
    SOURCE__FAILED("source.failed"),
1159

1160
    @SerializedName("source.mandate_notification")
1✔
1161
    SOURCE__MANDATE_NOTIFICATION("source.mandate_notification"),
1162

1163
    @SerializedName("source.refund_attributes_required")
1✔
1164
    SOURCE__REFUND_ATTRIBUTES_REQUIRED("source.refund_attributes_required"),
1165

1166
    @SerializedName("source.transaction.created")
1✔
1167
    SOURCE__TRANSACTION__CREATED("source.transaction.created"),
1168

1169
    @SerializedName("source.transaction.updated")
1✔
1170
    SOURCE__TRANSACTION__UPDATED("source.transaction.updated"),
1171

1172
    @SerializedName("subscription_schedule.aborted")
1✔
1173
    SUBSCRIPTION_SCHEDULE__ABORTED("subscription_schedule.aborted"),
1174

1175
    @SerializedName("subscription_schedule.canceled")
1✔
1176
    SUBSCRIPTION_SCHEDULE__CANCELED("subscription_schedule.canceled"),
1177

1178
    @SerializedName("subscription_schedule.completed")
1✔
1179
    SUBSCRIPTION_SCHEDULE__COMPLETED("subscription_schedule.completed"),
1180

1181
    @SerializedName("subscription_schedule.created")
1✔
1182
    SUBSCRIPTION_SCHEDULE__CREATED("subscription_schedule.created"),
1183

1184
    @SerializedName("subscription_schedule.expiring")
1✔
1185
    SUBSCRIPTION_SCHEDULE__EXPIRING("subscription_schedule.expiring"),
1186

1187
    @SerializedName("subscription_schedule.released")
1✔
1188
    SUBSCRIPTION_SCHEDULE__RELEASED("subscription_schedule.released"),
1189

1190
    @SerializedName("subscription_schedule.updated")
1✔
1191
    SUBSCRIPTION_SCHEDULE__UPDATED("subscription_schedule.updated"),
1192

1193
    @SerializedName("tax.settings.updated")
1✔
1194
    TAX__SETTINGS__UPDATED("tax.settings.updated"),
1195

1196
    @SerializedName("tax_rate.created")
1✔
1197
    TAX_RATE__CREATED("tax_rate.created"),
1198

1199
    @SerializedName("tax_rate.updated")
1✔
1200
    TAX_RATE__UPDATED("tax_rate.updated"),
1201

1202
    @SerializedName("terminal.reader.action_failed")
1✔
1203
    TERMINAL__READER__ACTION_FAILED("terminal.reader.action_failed"),
1204

1205
    @SerializedName("terminal.reader.action_succeeded")
1✔
1206
    TERMINAL__READER__ACTION_SUCCEEDED("terminal.reader.action_succeeded"),
1207

1208
    @SerializedName("test_helpers.test_clock.advancing")
1✔
1209
    TEST_HELPERS__TEST_CLOCK__ADVANCING("test_helpers.test_clock.advancing"),
1210

1211
    @SerializedName("test_helpers.test_clock.created")
1✔
1212
    TEST_HELPERS__TEST_CLOCK__CREATED("test_helpers.test_clock.created"),
1213

1214
    @SerializedName("test_helpers.test_clock.deleted")
1✔
1215
    TEST_HELPERS__TEST_CLOCK__DELETED("test_helpers.test_clock.deleted"),
1216

1217
    @SerializedName("test_helpers.test_clock.internal_failure")
1✔
1218
    TEST_HELPERS__TEST_CLOCK__INTERNAL_FAILURE("test_helpers.test_clock.internal_failure"),
1219

1220
    @SerializedName("test_helpers.test_clock.ready")
1✔
1221
    TEST_HELPERS__TEST_CLOCK__READY("test_helpers.test_clock.ready"),
1222

1223
    @SerializedName("topup.canceled")
1✔
1224
    TOPUP__CANCELED("topup.canceled"),
1225

1226
    @SerializedName("topup.created")
1✔
1227
    TOPUP__CREATED("topup.created"),
1228

1229
    @SerializedName("topup.failed")
1✔
1230
    TOPUP__FAILED("topup.failed"),
1231

1232
    @SerializedName("topup.reversed")
1✔
1233
    TOPUP__REVERSED("topup.reversed"),
1234

1235
    @SerializedName("topup.succeeded")
1✔
1236
    TOPUP__SUCCEEDED("topup.succeeded"),
1237

1238
    @SerializedName("transfer.created")
1✔
1239
    TRANSFER__CREATED("transfer.created"),
1240

1241
    @SerializedName("transfer.reversed")
1✔
1242
    TRANSFER__REVERSED("transfer.reversed"),
1243

1244
    @SerializedName("transfer.updated")
1✔
1245
    TRANSFER__UPDATED("transfer.updated"),
1246

1247
    @SerializedName("treasury.credit_reversal.created")
1✔
1248
    TREASURY__CREDIT_REVERSAL__CREATED("treasury.credit_reversal.created"),
1249

1250
    @SerializedName("treasury.credit_reversal.posted")
1✔
1251
    TREASURY__CREDIT_REVERSAL__POSTED("treasury.credit_reversal.posted"),
1252

1253
    @SerializedName("treasury.debit_reversal.completed")
1✔
1254
    TREASURY__DEBIT_REVERSAL__COMPLETED("treasury.debit_reversal.completed"),
1255

1256
    @SerializedName("treasury.debit_reversal.created")
1✔
1257
    TREASURY__DEBIT_REVERSAL__CREATED("treasury.debit_reversal.created"),
1258

1259
    @SerializedName("treasury.debit_reversal.initial_credit_granted")
1✔
1260
    TREASURY__DEBIT_REVERSAL__INITIAL_CREDIT_GRANTED(
1261
        "treasury.debit_reversal.initial_credit_granted"),
1262

1263
    @SerializedName("treasury.financial_account.closed")
1✔
1264
    TREASURY__FINANCIAL_ACCOUNT__CLOSED("treasury.financial_account.closed"),
1265

1266
    @SerializedName("treasury.financial_account.created")
1✔
1267
    TREASURY__FINANCIAL_ACCOUNT__CREATED("treasury.financial_account.created"),
1268

1269
    @SerializedName("treasury.financial_account.features_status_updated")
1✔
1270
    TREASURY__FINANCIAL_ACCOUNT__FEATURES_STATUS_UPDATED(
1271
        "treasury.financial_account.features_status_updated"),
1272

1273
    @SerializedName("treasury.inbound_transfer.canceled")
1✔
1274
    TREASURY__INBOUND_TRANSFER__CANCELED("treasury.inbound_transfer.canceled"),
1275

1276
    @SerializedName("treasury.inbound_transfer.created")
1✔
1277
    TREASURY__INBOUND_TRANSFER__CREATED("treasury.inbound_transfer.created"),
1278

1279
    @SerializedName("treasury.inbound_transfer.failed")
1✔
1280
    TREASURY__INBOUND_TRANSFER__FAILED("treasury.inbound_transfer.failed"),
1281

1282
    @SerializedName("treasury.inbound_transfer.succeeded")
1✔
1283
    TREASURY__INBOUND_TRANSFER__SUCCEEDED("treasury.inbound_transfer.succeeded"),
1284

1285
    @SerializedName("treasury.outbound_payment.canceled")
1✔
1286
    TREASURY__OUTBOUND_PAYMENT__CANCELED("treasury.outbound_payment.canceled"),
1287

1288
    @SerializedName("treasury.outbound_payment.created")
1✔
1289
    TREASURY__OUTBOUND_PAYMENT__CREATED("treasury.outbound_payment.created"),
1290

1291
    @SerializedName("treasury.outbound_payment.expected_arrival_date_updated")
1✔
1292
    TREASURY__OUTBOUND_PAYMENT__EXPECTED_ARRIVAL_DATE_UPDATED(
1293
        "treasury.outbound_payment.expected_arrival_date_updated"),
1294

1295
    @SerializedName("treasury.outbound_payment.failed")
1✔
1296
    TREASURY__OUTBOUND_PAYMENT__FAILED("treasury.outbound_payment.failed"),
1297

1298
    @SerializedName("treasury.outbound_payment.posted")
1✔
1299
    TREASURY__OUTBOUND_PAYMENT__POSTED("treasury.outbound_payment.posted"),
1300

1301
    @SerializedName("treasury.outbound_payment.returned")
1✔
1302
    TREASURY__OUTBOUND_PAYMENT__RETURNED("treasury.outbound_payment.returned"),
1303

1304
    @SerializedName("treasury.outbound_payment.tracking_details_updated")
1✔
1305
    TREASURY__OUTBOUND_PAYMENT__TRACKING_DETAILS_UPDATED(
1306
        "treasury.outbound_payment.tracking_details_updated"),
1307

1308
    @SerializedName("treasury.outbound_transfer.canceled")
1✔
1309
    TREASURY__OUTBOUND_TRANSFER__CANCELED("treasury.outbound_transfer.canceled"),
1310

1311
    @SerializedName("treasury.outbound_transfer.created")
1✔
1312
    TREASURY__OUTBOUND_TRANSFER__CREATED("treasury.outbound_transfer.created"),
1313

1314
    @SerializedName("treasury.outbound_transfer.expected_arrival_date_updated")
1✔
1315
    TREASURY__OUTBOUND_TRANSFER__EXPECTED_ARRIVAL_DATE_UPDATED(
1316
        "treasury.outbound_transfer.expected_arrival_date_updated"),
1317

1318
    @SerializedName("treasury.outbound_transfer.failed")
1✔
1319
    TREASURY__OUTBOUND_TRANSFER__FAILED("treasury.outbound_transfer.failed"),
1320

1321
    @SerializedName("treasury.outbound_transfer.posted")
1✔
1322
    TREASURY__OUTBOUND_TRANSFER__POSTED("treasury.outbound_transfer.posted"),
1323

1324
    @SerializedName("treasury.outbound_transfer.returned")
1✔
1325
    TREASURY__OUTBOUND_TRANSFER__RETURNED("treasury.outbound_transfer.returned"),
1326

1327
    @SerializedName("treasury.outbound_transfer.tracking_details_updated")
1✔
1328
    TREASURY__OUTBOUND_TRANSFER__TRACKING_DETAILS_UPDATED(
1329
        "treasury.outbound_transfer.tracking_details_updated"),
1330

1331
    @SerializedName("treasury.received_credit.created")
1✔
1332
    TREASURY__RECEIVED_CREDIT__CREATED("treasury.received_credit.created"),
1333

1334
    @SerializedName("treasury.received_credit.failed")
1✔
1335
    TREASURY__RECEIVED_CREDIT__FAILED("treasury.received_credit.failed"),
1336

1337
    @SerializedName("treasury.received_credit.succeeded")
1✔
1338
    TREASURY__RECEIVED_CREDIT__SUCCEEDED("treasury.received_credit.succeeded"),
1339

1340
    @SerializedName("treasury.received_debit.created")
1✔
1341
    TREASURY__RECEIVED_DEBIT__CREATED("treasury.received_debit.created");
1342

1343
    @Getter(onMethod_ = {@Override})
1344
    private final String value;
1345

1346
    EnabledEvent(String value) {
1✔
1347
      this.value = value;
1✔
1348
    }
1✔
1349
  }
1350
}
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