@tennac-booking/sdk 1.0.289 → 1.0.290

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -298,6 +298,12 @@ docs/LoginWithTermsResponse.md
298
298
  docs/ManagedClubsResponse.md
299
299
  docs/ManagerCancelBookingRequest.md
300
300
  docs/ManagerCancelBookingResponse.md
301
+ docs/ManagerConsoleInvoicePlayerSummary.md
302
+ docs/ManagerConsoleInvoiceResponse.md
303
+ docs/ManagerConsoleInvoiceResponsePaysForInner.md
304
+ docs/ManagerConsoleInvoiceResponseStripe.md
305
+ docs/ManagerConsoleInvoiceResponseSumup.md
306
+ docs/ManagerConsoleInvoiceUserSummary.md
301
307
  docs/MarkNotificationsReadRequest.md
302
308
  docs/MarkNotificationsReadResponse.md
303
309
  docs/MigrateSubscription200Response.md
package/README.md CHANGED
@@ -615,6 +615,12 @@ Class | Method | HTTP request | Description
615
615
  - [ManagedClubsResponse](docs/ManagedClubsResponse.md)
616
616
  - [ManagerCancelBookingRequest](docs/ManagerCancelBookingRequest.md)
617
617
  - [ManagerCancelBookingResponse](docs/ManagerCancelBookingResponse.md)
618
+ - [ManagerConsoleInvoicePlayerSummary](docs/ManagerConsoleInvoicePlayerSummary.md)
619
+ - [ManagerConsoleInvoiceResponse](docs/ManagerConsoleInvoiceResponse.md)
620
+ - [ManagerConsoleInvoiceResponsePaysForInner](docs/ManagerConsoleInvoiceResponsePaysForInner.md)
621
+ - [ManagerConsoleInvoiceResponseStripe](docs/ManagerConsoleInvoiceResponseStripe.md)
622
+ - [ManagerConsoleInvoiceResponseSumup](docs/ManagerConsoleInvoiceResponseSumup.md)
623
+ - [ManagerConsoleInvoiceUserSummary](docs/ManagerConsoleInvoiceUserSummary.md)
618
624
  - [MarkNotificationsReadRequest](docs/MarkNotificationsReadRequest.md)
619
625
  - [MarkNotificationsReadResponse](docs/MarkNotificationsReadResponse.md)
620
626
  - [MigrateSubscription200Response](docs/MigrateSubscription200Response.md)
package/api.ts CHANGED
@@ -754,6 +754,12 @@ export interface BookingManagerConsoleResponse {
754
754
  * @memberof BookingManagerConsoleResponse
755
755
  */
756
756
  'noShowPreview': NoShowPreviewResponse;
757
+ /**
758
+ * Factures liées à la réservation (enrichies pour la console manager)
759
+ * @type {Array<ManagerConsoleInvoiceResponse>}
760
+ * @memberof BookingManagerConsoleResponse
761
+ */
762
+ 'invoices': Array<ManagerConsoleInvoiceResponse>;
757
763
  }
758
764
  /**
759
765
  *
@@ -3755,13 +3761,13 @@ export interface ClubPlayerBookingItem {
3755
3761
  * @type {string}
3756
3762
  * @memberof ClubPlayerBookingItem
3757
3763
  */
3758
- 'startDate': string | null;
3764
+ 'startDate': string;
3759
3765
  /**
3760
3766
  * Date de fin de la réservation
3761
3767
  * @type {string}
3762
3768
  * @memberof ClubPlayerBookingItem
3763
3769
  */
3764
- 'endDate': string | null;
3770
+ 'endDate': string;
3765
3771
  /**
3766
3772
  * Nom du terrain ou emplacement
3767
3773
  * @type {string}
@@ -5631,13 +5637,13 @@ export interface CreateEventRequest {
5631
5637
  * @type {boolean}
5632
5638
  * @memberof CreateEventRequest
5633
5639
  */
5634
- 'isAllDay': boolean;
5640
+ 'isAllDay'?: boolean;
5635
5641
  /**
5636
5642
  *
5637
5643
  * @type {string}
5638
5644
  * @memberof CreateEventRequest
5639
5645
  */
5640
- 'date': string;
5646
+ 'date'?: string;
5641
5647
  /**
5642
5648
  *
5643
5649
  * @type {number}
@@ -5650,6 +5656,18 @@ export interface CreateEventRequest {
5650
5656
  * @memberof CreateEventRequest
5651
5657
  */
5652
5658
  'endTime'?: number;
5659
+ /**
5660
+ *
5661
+ * @type {string}
5662
+ * @memberof CreateEventRequest
5663
+ */
5664
+ 'startDate'?: string;
5665
+ /**
5666
+ *
5667
+ * @type {string}
5668
+ * @memberof CreateEventRequest
5669
+ */
5670
+ 'endDate'?: string;
5653
5671
  /**
5654
5672
  *
5655
5673
  * @type {Array<string>}
@@ -7357,6 +7375,18 @@ export interface EventConflictCheckRequest {
7357
7375
  * @memberof EventConflictCheckRequest
7358
7376
  */
7359
7377
  'clubId'?: string;
7378
+ /**
7379
+ *
7380
+ * @type {string}
7381
+ * @memberof EventConflictCheckRequest
7382
+ */
7383
+ 'startDate'?: string;
7384
+ /**
7385
+ *
7386
+ * @type {string}
7387
+ * @memberof EventConflictCheckRequest
7388
+ */
7389
+ 'endDate'?: string;
7360
7390
  /**
7361
7391
  *
7362
7392
  * @type {string}
@@ -7730,6 +7760,18 @@ export interface EventResponse {
7730
7760
  * @memberof EventResponse
7731
7761
  */
7732
7762
  'endTime'?: number;
7763
+ /**
7764
+ *
7765
+ * @type {string}
7766
+ * @memberof EventResponse
7767
+ */
7768
+ 'startDate': string;
7769
+ /**
7770
+ *
7771
+ * @type {string}
7772
+ * @memberof EventResponse
7773
+ */
7774
+ 'endDate': string;
7733
7775
  /**
7734
7776
  *
7735
7777
  * @type {Array<string>}
@@ -10187,6 +10229,466 @@ export interface ManagerCancelBookingResponse {
10187
10229
  */
10188
10230
  'booking': BookingInfo;
10189
10231
  }
10232
+ /**
10233
+ *
10234
+ * @export
10235
+ * @interface ManagerConsoleInvoicePlayerSummary
10236
+ */
10237
+ export interface ManagerConsoleInvoicePlayerSummary {
10238
+ /**
10239
+ *
10240
+ * @type {string}
10241
+ * @memberof ManagerConsoleInvoicePlayerSummary
10242
+ */
10243
+ 'playerId': string;
10244
+ /**
10245
+ *
10246
+ * @type {string}
10247
+ * @memberof ManagerConsoleInvoicePlayerSummary
10248
+ */
10249
+ 'firstName': string;
10250
+ /**
10251
+ *
10252
+ * @type {string}
10253
+ * @memberof ManagerConsoleInvoicePlayerSummary
10254
+ */
10255
+ 'lastName': string;
10256
+ /**
10257
+ *
10258
+ * @type {string}
10259
+ * @memberof ManagerConsoleInvoicePlayerSummary
10260
+ */
10261
+ 'email': string;
10262
+ /**
10263
+ *
10264
+ * @type {number}
10265
+ * @memberof ManagerConsoleInvoicePlayerSummary
10266
+ */
10267
+ 'reducedAmount': number;
10268
+ }
10269
+ /**
10270
+ *
10271
+ * @export
10272
+ * @interface ManagerConsoleInvoiceResponse
10273
+ */
10274
+ export interface ManagerConsoleInvoiceResponse {
10275
+ /**
10276
+ *
10277
+ * @type {string}
10278
+ * @memberof ManagerConsoleInvoiceResponse
10279
+ */
10280
+ 'id': string;
10281
+ /**
10282
+ *
10283
+ * @type {string}
10284
+ * @memberof ManagerConsoleInvoiceResponse
10285
+ */
10286
+ 'billNumber': string;
10287
+ /**
10288
+ *
10289
+ * @type {string}
10290
+ * @memberof ManagerConsoleInvoiceResponse
10291
+ */
10292
+ 'clubId'?: string;
10293
+ /**
10294
+ *
10295
+ * @type {string}
10296
+ * @memberof ManagerConsoleInvoiceResponse
10297
+ */
10298
+ 'bookingId'?: string;
10299
+ /**
10300
+ *
10301
+ * @type {string}
10302
+ * @memberof ManagerConsoleInvoiceResponse
10303
+ */
10304
+ 'userId'?: string;
10305
+ /**
10306
+ *
10307
+ * @type {string}
10308
+ * @memberof ManagerConsoleInvoiceResponse
10309
+ */
10310
+ 'date': string | null;
10311
+ /**
10312
+ *
10313
+ * @type {string}
10314
+ * @memberof ManagerConsoleInvoiceResponse
10315
+ */
10316
+ 'paymentDate': string | null;
10317
+ /**
10318
+ *
10319
+ * @type {string}
10320
+ * @memberof ManagerConsoleInvoiceResponse
10321
+ */
10322
+ 'clientFirstName': string;
10323
+ /**
10324
+ *
10325
+ * @type {string}
10326
+ * @memberof ManagerConsoleInvoiceResponse
10327
+ */
10328
+ 'clientLastName': string;
10329
+ /**
10330
+ *
10331
+ * @type {string}
10332
+ * @memberof ManagerConsoleInvoiceResponse
10333
+ */
10334
+ 'clientEmail': string;
10335
+ /**
10336
+ *
10337
+ * @type {number}
10338
+ * @memberof ManagerConsoleInvoiceResponse
10339
+ */
10340
+ 'totalCost': number;
10341
+ /**
10342
+ *
10343
+ * @type {number}
10344
+ * @memberof ManagerConsoleInvoiceResponse
10345
+ */
10346
+ 'amount': number;
10347
+ /**
10348
+ *
10349
+ * @type {string}
10350
+ * @memberof ManagerConsoleInvoiceResponse
10351
+ */
10352
+ 'reason'?: string | null;
10353
+ /**
10354
+ *
10355
+ * @type {string}
10356
+ * @memberof ManagerConsoleInvoiceResponse
10357
+ */
10358
+ 'status': string | null;
10359
+ /**
10360
+ *
10361
+ * @type {string}
10362
+ * @memberof ManagerConsoleInvoiceResponse
10363
+ */
10364
+ 'paymentMethod': string | null;
10365
+ /**
10366
+ *
10367
+ * @type {string}
10368
+ * @memberof ManagerConsoleInvoiceResponse
10369
+ */
10370
+ 'paymentProvider': ManagerConsoleInvoiceResponsePaymentProviderEnum;
10371
+ /**
10372
+ *
10373
+ * @type {string}
10374
+ * @memberof ManagerConsoleInvoiceResponse
10375
+ */
10376
+ 'flag': ManagerConsoleInvoiceResponseFlagEnum;
10377
+ /**
10378
+ *
10379
+ * @type {ManagerConsoleInvoiceResponseStripe}
10380
+ * @memberof ManagerConsoleInvoiceResponse
10381
+ */
10382
+ 'stripe': ManagerConsoleInvoiceResponseStripe | null;
10383
+ /**
10384
+ *
10385
+ * @type {ManagerConsoleInvoiceResponseSumup}
10386
+ * @memberof ManagerConsoleInvoiceResponse
10387
+ */
10388
+ 'sumup': ManagerConsoleInvoiceResponseSumup | null;
10389
+ /**
10390
+ *
10391
+ * @type {string}
10392
+ * @memberof ManagerConsoleInvoiceResponse
10393
+ */
10394
+ 'linkToInvoicePDF': string | null;
10395
+ /**
10396
+ *
10397
+ * @type {Array<ManagerConsoleInvoiceResponsePaysForInner>}
10398
+ * @memberof ManagerConsoleInvoiceResponse
10399
+ */
10400
+ 'paysFor': Array<ManagerConsoleInvoiceResponsePaysForInner>;
10401
+ /**
10402
+ *
10403
+ * @type {Array<ManagerConsoleInvoicePlayerSummary>}
10404
+ * @memberof ManagerConsoleInvoiceResponse
10405
+ */
10406
+ 'players': Array<ManagerConsoleInvoicePlayerSummary>;
10407
+ /**
10408
+ *
10409
+ * @type {number}
10410
+ * @memberof ManagerConsoleInvoiceResponse
10411
+ */
10412
+ 'reducedAmountForSelf'?: number;
10413
+ /**
10414
+ *
10415
+ * @type {boolean}
10416
+ * @memberof ManagerConsoleInvoiceResponse
10417
+ */
10418
+ 'isWaitList'?: boolean;
10419
+ /**
10420
+ *
10421
+ * @type {boolean}
10422
+ * @memberof ManagerConsoleInvoiceResponse
10423
+ */
10424
+ 'accepted'?: boolean;
10425
+ /**
10426
+ *
10427
+ * @type {boolean}
10428
+ * @memberof ManagerConsoleInvoiceResponse
10429
+ */
10430
+ 'authorized'?: boolean;
10431
+ /**
10432
+ *
10433
+ * @type {number}
10434
+ * @memberof ManagerConsoleInvoiceResponse
10435
+ */
10436
+ 'usedCredits'?: number;
10437
+ /**
10438
+ *
10439
+ * @type {string}
10440
+ * @memberof ManagerConsoleInvoiceResponse
10441
+ */
10442
+ 'stripeInvoiceId'?: string | null;
10443
+ /**
10444
+ *
10445
+ * @type {string}
10446
+ * @memberof ManagerConsoleInvoiceResponse
10447
+ */
10448
+ 'stripePaymentIntentId'?: string | null;
10449
+ /**
10450
+ *
10451
+ * @type {string}
10452
+ * @memberof ManagerConsoleInvoiceResponse
10453
+ */
10454
+ 'stripePaymentUrl'?: string | null;
10455
+ /**
10456
+ *
10457
+ * @type {string}
10458
+ * @memberof ManagerConsoleInvoiceResponse
10459
+ */
10460
+ 'stripeInvoiceUrl'?: string | null;
10461
+ /**
10462
+ *
10463
+ * @type {string}
10464
+ * @memberof ManagerConsoleInvoiceResponse
10465
+ */
10466
+ 'sumupPaymentId'?: string | null;
10467
+ /**
10468
+ *
10469
+ * @type {string}
10470
+ * @memberof ManagerConsoleInvoiceResponse
10471
+ */
10472
+ 'sumupCheckoutId'?: string | null;
10473
+ /**
10474
+ * Construct a type with a set of properties K of type T
10475
+ * @type {{ [key: string]: any; }}
10476
+ * @memberof ManagerConsoleInvoiceResponse
10477
+ */
10478
+ 'metadata'?: { [key: string]: any; } | null;
10479
+ /**
10480
+ *
10481
+ * @type {string}
10482
+ * @memberof ManagerConsoleInvoiceResponse
10483
+ */
10484
+ 'authorizedAt'?: string | null;
10485
+ /**
10486
+ *
10487
+ * @type {string}
10488
+ * @memberof ManagerConsoleInvoiceResponse
10489
+ */
10490
+ 'authorizationExpiresAt'?: string | null;
10491
+ /**
10492
+ *
10493
+ * @type {string}
10494
+ * @memberof ManagerConsoleInvoiceResponse
10495
+ */
10496
+ 'createdAt'?: string | null;
10497
+ /**
10498
+ *
10499
+ * @type {string}
10500
+ * @memberof ManagerConsoleInvoiceResponse
10501
+ */
10502
+ 'updatedAt'?: string | null;
10503
+ /**
10504
+ *
10505
+ * @type {ManagerConsoleInvoiceUserSummary}
10506
+ * @memberof ManagerConsoleInvoiceResponse
10507
+ */
10508
+ 'user'?: ManagerConsoleInvoiceUserSummary;
10509
+ }
10510
+
10511
+ export const ManagerConsoleInvoiceResponsePaymentProviderEnum = {
10512
+ Sumup: 'sumup',
10513
+ Stripe: 'stripe',
10514
+ Other: 'other'
10515
+ } as const;
10516
+
10517
+ export type ManagerConsoleInvoiceResponsePaymentProviderEnum = typeof ManagerConsoleInvoiceResponsePaymentProviderEnum[keyof typeof ManagerConsoleInvoiceResponsePaymentProviderEnum];
10518
+ export const ManagerConsoleInvoiceResponseFlagEnum = {
10519
+ Sumup: 'sumup',
10520
+ Stripe: 'stripe',
10521
+ Other: 'other'
10522
+ } as const;
10523
+
10524
+ export type ManagerConsoleInvoiceResponseFlagEnum = typeof ManagerConsoleInvoiceResponseFlagEnum[keyof typeof ManagerConsoleInvoiceResponseFlagEnum];
10525
+
10526
+ /**
10527
+ *
10528
+ * @export
10529
+ * @interface ManagerConsoleInvoiceResponsePaysForInner
10530
+ */
10531
+ export interface ManagerConsoleInvoiceResponsePaysForInner {
10532
+ /**
10533
+ *
10534
+ * @type {number}
10535
+ * @memberof ManagerConsoleInvoiceResponsePaysForInner
10536
+ */
10537
+ 'reducedAmount': number;
10538
+ /**
10539
+ *
10540
+ * @type {string}
10541
+ * @memberof ManagerConsoleInvoiceResponsePaysForInner
10542
+ */
10543
+ 'playerId': string;
10544
+ }
10545
+ /**
10546
+ *
10547
+ * @export
10548
+ * @interface ManagerConsoleInvoiceResponseStripe
10549
+ */
10550
+ export interface ManagerConsoleInvoiceResponseStripe {
10551
+ /**
10552
+ *
10553
+ * @type {string}
10554
+ * @memberof ManagerConsoleInvoiceResponseStripe
10555
+ */
10556
+ 'invoiceUrl': string | null;
10557
+ /**
10558
+ *
10559
+ * @type {string}
10560
+ * @memberof ManagerConsoleInvoiceResponseStripe
10561
+ */
10562
+ 'paymentUrl': string | null;
10563
+ /**
10564
+ *
10565
+ * @type {string}
10566
+ * @memberof ManagerConsoleInvoiceResponseStripe
10567
+ */
10568
+ 'paymentIntentId': string | null;
10569
+ /**
10570
+ *
10571
+ * @type {string}
10572
+ * @memberof ManagerConsoleInvoiceResponseStripe
10573
+ */
10574
+ 'invoiceId': string | null;
10575
+ }
10576
+ /**
10577
+ *
10578
+ * @export
10579
+ * @interface ManagerConsoleInvoiceResponseSumup
10580
+ */
10581
+ export interface ManagerConsoleInvoiceResponseSumup {
10582
+ /**
10583
+ * Construct a type with a set of properties K of type T
10584
+ * @type {{ [key: string]: any; }}
10585
+ * @memberof ManagerConsoleInvoiceResponseSumup
10586
+ */
10587
+ 'receipt': { [key: string]: any; } | null;
10588
+ /**
10589
+ * Construct a type with a set of properties K of type T
10590
+ * @type {{ [key: string]: any; }}
10591
+ * @memberof ManagerConsoleInvoiceResponseSumup
10592
+ */
10593
+ 'transaction': { [key: string]: any; } | null;
10594
+ /**
10595
+ * Construct a type with a set of properties K of type T
10596
+ * @type {{ [key: string]: any; }}
10597
+ * @memberof ManagerConsoleInvoiceResponseSumup
10598
+ */
10599
+ 'checkout': { [key: string]: any; } | null;
10600
+ /**
10601
+ *
10602
+ * @type {string}
10603
+ * @memberof ManagerConsoleInvoiceResponseSumup
10604
+ */
10605
+ 'receiptApiUrl': string | null;
10606
+ /**
10607
+ *
10608
+ * @type {string}
10609
+ * @memberof ManagerConsoleInvoiceResponseSumup
10610
+ */
10611
+ 'updatedAt': string | null;
10612
+ /**
10613
+ *
10614
+ * @type {string}
10615
+ * @memberof ManagerConsoleInvoiceResponseSumup
10616
+ */
10617
+ 'status': string | null;
10618
+ /**
10619
+ *
10620
+ * @type {string}
10621
+ * @memberof ManagerConsoleInvoiceResponseSumup
10622
+ */
10623
+ 'cardType': string | null;
10624
+ /**
10625
+ *
10626
+ * @type {string}
10627
+ * @memberof ManagerConsoleInvoiceResponseSumup
10628
+ */
10629
+ 'cardLast4': string | null;
10630
+ /**
10631
+ *
10632
+ * @type {string}
10633
+ * @memberof ManagerConsoleInvoiceResponseSumup
10634
+ */
10635
+ 'transactionCode': string | null;
10636
+ /**
10637
+ *
10638
+ * @type {string}
10639
+ * @memberof ManagerConsoleInvoiceResponseSumup
10640
+ */
10641
+ 'transactionId': string | null;
10642
+ /**
10643
+ *
10644
+ * @type {string}
10645
+ * @memberof ManagerConsoleInvoiceResponseSumup
10646
+ */
10647
+ 'checkoutId': string | null;
10648
+ /**
10649
+ *
10650
+ * @type {string}
10651
+ * @memberof ManagerConsoleInvoiceResponseSumup
10652
+ */
10653
+ 'paymentId': string | null;
10654
+ }
10655
+ /**
10656
+ *
10657
+ * @export
10658
+ * @interface ManagerConsoleInvoiceUserSummary
10659
+ */
10660
+ export interface ManagerConsoleInvoiceUserSummary {
10661
+ /**
10662
+ *
10663
+ * @type {string}
10664
+ * @memberof ManagerConsoleInvoiceUserSummary
10665
+ */
10666
+ 'id': string;
10667
+ /**
10668
+ *
10669
+ * @type {string}
10670
+ * @memberof ManagerConsoleInvoiceUserSummary
10671
+ */
10672
+ 'firstName': string;
10673
+ /**
10674
+ *
10675
+ * @type {string}
10676
+ * @memberof ManagerConsoleInvoiceUserSummary
10677
+ */
10678
+ 'lastName': string;
10679
+ /**
10680
+ *
10681
+ * @type {string}
10682
+ * @memberof ManagerConsoleInvoiceUserSummary
10683
+ */
10684
+ 'email': string;
10685
+ /**
10686
+ *
10687
+ * @type {string}
10688
+ * @memberof ManagerConsoleInvoiceUserSummary
10689
+ */
10690
+ 'profilePictureUrl'?: string;
10691
+ }
10190
10692
  /**
10191
10693
  *
10192
10694
  * @export
@@ -16037,6 +16539,42 @@ export interface SumupReaderInfo {
16037
16539
  * @memberof SumupReaderInfo
16038
16540
  */
16039
16541
  'status'?: string;
16542
+ /**
16543
+ *
16544
+ * @type {boolean}
16545
+ * @memberof SumupReaderInfo
16546
+ */
16547
+ 'isAllowedForPayments'?: boolean;
16548
+ /**
16549
+ *
16550
+ * @type {boolean}
16551
+ * @memberof SumupReaderInfo
16552
+ */
16553
+ 'isDefaultForPayments'?: boolean;
16554
+ /**
16555
+ *
16556
+ * @type {boolean}
16557
+ * @memberof SumupReaderInfo
16558
+ */
16559
+ 'isReadyForPayments'?: boolean;
16560
+ /**
16561
+ *
16562
+ * @type {boolean}
16563
+ * @memberof SumupReaderInfo
16564
+ */
16565
+ 'isAvailableForPayments'?: boolean;
16566
+ /**
16567
+ *
16568
+ * @type {string}
16569
+ * @memberof SumupReaderInfo
16570
+ */
16571
+ 'paymentStatus'?: string;
16572
+ /**
16573
+ *
16574
+ * @type {string}
16575
+ * @memberof SumupReaderInfo
16576
+ */
16577
+ 'paymentState'?: string;
16040
16578
  /**
16041
16579
  *
16042
16580
  * @type {SumupReaderInfoDevice}
@@ -16837,6 +17375,18 @@ export interface UpdateEventRequest {
16837
17375
  * @memberof UpdateEventRequest
16838
17376
  */
16839
17377
  'endTime'?: number;
17378
+ /**
17379
+ *
17380
+ * @type {string}
17381
+ * @memberof UpdateEventRequest
17382
+ */
17383
+ 'startDate'?: string;
17384
+ /**
17385
+ *
17386
+ * @type {string}
17387
+ * @memberof UpdateEventRequest
17388
+ */
17389
+ 'endDate'?: string;
16840
17390
  /**
16841
17391
  *
16842
17392
  * @type {Array<string>}
@@ -17165,6 +17715,18 @@ export interface UpdateRecurringDefinitionRequest {
17165
17715
  * @memberof UpdateRecurringDefinitionRequest
17166
17716
  */
17167
17717
  'endTime'?: number;
17718
+ /**
17719
+ *
17720
+ * @type {string}
17721
+ * @memberof UpdateRecurringDefinitionRequest
17722
+ */
17723
+ 'startDate'?: string;
17724
+ /**
17725
+ *
17726
+ * @type {string}
17727
+ * @memberof UpdateRecurringDefinitionRequest
17728
+ */
17729
+ 'endDate'?: string;
17168
17730
  /**
17169
17731
  *
17170
17732
  * @type {string}