@seamapi/types 1.302.1 → 1.303.0

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.
@@ -141,6 +141,8 @@ export interface Routes {
141
141
  display_name: string
142
142
  /** Access (PIN) code for the credential. */
143
143
  code?: (string | undefined) | null
144
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
145
+ is_one_time_use?: boolean | undefined
144
146
  card_number?: (string | undefined) | null
145
147
  is_issued?: boolean | undefined
146
148
  issued_at?: (string | undefined) | null
@@ -245,6 +247,8 @@ export interface Routes {
245
247
  display_name: string
246
248
  /** Access (PIN) code for the credential. */
247
249
  code?: (string | undefined) | null
250
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
251
+ is_one_time_use?: boolean | undefined
248
252
  card_number?: (string | undefined) | null
249
253
  is_issued?: boolean | undefined
250
254
  issued_at?: (string | undefined) | null
@@ -394,6 +398,8 @@ export interface Routes {
394
398
  display_name: string
395
399
  /** Access (PIN) code for the credential. */
396
400
  code?: (string | undefined) | null
401
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
402
+ is_one_time_use?: boolean | undefined
397
403
  card_number?: (string | undefined) | null
398
404
  is_issued?: boolean | undefined
399
405
  issued_at?: (string | undefined) | null
@@ -498,6 +504,8 @@ export interface Routes {
498
504
  display_name: string
499
505
  /** Access (PIN) code for the credential. */
500
506
  code?: (string | undefined) | null
507
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
508
+ is_one_time_use?: boolean | undefined
501
509
  card_number?: (string | undefined) | null
502
510
  is_issued?: boolean | undefined
503
511
  issued_at?: (string | undefined) | null
@@ -1286,6 +1294,8 @@ export interface Routes {
1286
1294
  display_name: string
1287
1295
  /** Access (PIN) code for the credential. */
1288
1296
  code?: (string | undefined) | null
1297
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
1298
+ is_one_time_use?: boolean | undefined
1289
1299
  card_number?: (string | undefined) | null
1290
1300
  is_issued?: boolean | undefined
1291
1301
  issued_at?: (string | undefined) | null
@@ -1390,6 +1400,8 @@ export interface Routes {
1390
1400
  display_name: string
1391
1401
  /** Access (PIN) code for the credential. */
1392
1402
  code?: (string | undefined) | null
1403
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
1404
+ is_one_time_use?: boolean | undefined
1393
1405
  card_number?: (string | undefined) | null
1394
1406
  is_issued?: boolean | undefined
1395
1407
  issued_at?: (string | undefined) | null
@@ -1539,6 +1551,8 @@ export interface Routes {
1539
1551
  display_name: string
1540
1552
  /** Access (PIN) code for the credential. */
1541
1553
  code?: (string | undefined) | null
1554
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
1555
+ is_one_time_use?: boolean | undefined
1542
1556
  card_number?: (string | undefined) | null
1543
1557
  is_issued?: boolean | undefined
1544
1558
  issued_at?: (string | undefined) | null
@@ -1643,6 +1657,8 @@ export interface Routes {
1643
1657
  display_name: string
1644
1658
  /** Access (PIN) code for the credential. */
1645
1659
  code?: (string | undefined) | null
1660
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
1661
+ is_one_time_use?: boolean | undefined
1646
1662
  card_number?: (string | undefined) | null
1647
1663
  is_issued?: boolean | undefined
1648
1664
  issued_at?: (string | undefined) | null
@@ -2395,6 +2411,71 @@ export interface Routes {
2395
2411
  /** Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection. */
2396
2412
  is_offline_access_code: boolean
2397
2413
  }
2414
+ access_code: {
2415
+ /** Unique identifier for a group of access codes that share the same code. */
2416
+ common_code_key: string | null
2417
+ /** Indicates whether the code is set on the device according to a preconfigured schedule. */
2418
+ is_scheduled_on_device?: boolean | undefined
2419
+ /** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
2420
+ type: 'time_bound' | 'ongoing'
2421
+ /** Indicates whether the access code is waiting for a code assignment. */
2422
+ is_waiting_for_code_assignment?: boolean | undefined
2423
+ /** Unique identifier for the access code. */
2424
+ access_code_id: string
2425
+ /** Unique identifier for the device associated with the access code. */
2426
+ device_id: string
2427
+ /** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
2428
+ name: string | null
2429
+ /** Code used for access. Typically, a numeric or alphanumeric string. */
2430
+ code: string | null
2431
+ /** Date and time at which the access code was created. */
2432
+ created_at: string
2433
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
2434
+ errors: Array<
2435
+ | {
2436
+ message: string
2437
+ is_access_code_error: true
2438
+ error_code: string
2439
+ }
2440
+ | {
2441
+ message: string
2442
+ is_device_error: true
2443
+ error_code: string
2444
+ }
2445
+ | {
2446
+ message: string
2447
+ is_connected_account_error: true
2448
+ error_code: string
2449
+ }
2450
+ >
2451
+ /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
2452
+ warnings: Array<{
2453
+ message: string
2454
+ warning_code: string
2455
+ }>
2456
+ /** Indicates whether Seam manages the access code. */
2457
+ is_managed: true
2458
+ /** Date and time at which the time-bound access code becomes active. */
2459
+ starts_at?: (string | null) | undefined
2460
+ /** Date and time after which the time-bound access code becomes inactive. */
2461
+ ends_at?: (string | null) | undefined
2462
+ /**
2463
+ Current status of the access code within the operational lifecycle. Values are "setting," a transitional phase that indicates that the code is being configured or activated; "set", which indicates that the code is active and operational; "unset," which indicates a deactivated or unused state, either before activation or after deliberate deactivation; "removing," which indicates a transitional period in which the code is being deleted or made inactive; and "unknown," which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting.
2464
+ */
2465
+ status: 'setting' | 'set' | 'unset' | 'removing' | 'unknown'
2466
+ /** Indicates whether a backup access code is available for use if the primary access code is lost or compromised. */
2467
+ is_backup_access_code_available: boolean
2468
+ /** Indicates whether the access code is a backup code. */
2469
+ is_backup?: boolean | undefined
2470
+ /** Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code. */
2471
+ pulled_backup_access_code_id?: (string | null) | undefined
2472
+ /** Indicates whether changes to the access code from external sources are permitted. */
2473
+ is_external_modification_allowed: boolean
2474
+ /** Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use. */
2475
+ is_one_time_use: boolean
2476
+ /** Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection. */
2477
+ is_offline_access_code: boolean
2478
+ }
2398
2479
  }
2399
2480
  }
2400
2481
  '/access_codes/simulate/create_unmanaged_access_code': {
@@ -2596,6 +2677,8 @@ export interface Routes {
2596
2677
  display_name: string
2597
2678
  /** Access (PIN) code for the credential. */
2598
2679
  code?: (string | undefined) | null
2680
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
2681
+ is_one_time_use?: boolean | undefined
2599
2682
  card_number?: (string | undefined) | null
2600
2683
  is_issued?: boolean | undefined
2601
2684
  issued_at?: (string | undefined) | null
@@ -2700,6 +2783,8 @@ export interface Routes {
2700
2783
  display_name: string
2701
2784
  /** Access (PIN) code for the credential. */
2702
2785
  code?: (string | undefined) | null
2786
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
2787
+ is_one_time_use?: boolean | undefined
2703
2788
  card_number?: (string | undefined) | null
2704
2789
  is_issued?: boolean | undefined
2705
2790
  issued_at?: (string | undefined) | null
@@ -2849,6 +2934,8 @@ export interface Routes {
2849
2934
  display_name: string
2850
2935
  /** Access (PIN) code for the credential. */
2851
2936
  code?: (string | undefined) | null
2937
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
2938
+ is_one_time_use?: boolean | undefined
2852
2939
  card_number?: (string | undefined) | null
2853
2940
  is_issued?: boolean | undefined
2854
2941
  issued_at?: (string | undefined) | null
@@ -2953,6 +3040,8 @@ export interface Routes {
2953
3040
  display_name: string
2954
3041
  /** Access (PIN) code for the credential. */
2955
3042
  code?: (string | undefined) | null
3043
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
3044
+ is_one_time_use?: boolean | undefined
2956
3045
  card_number?: (string | undefined) | null
2957
3046
  is_issued?: boolean | undefined
2958
3047
  issued_at?: (string | undefined) | null
@@ -3728,6 +3817,8 @@ export interface Routes {
3728
3817
  display_name: string
3729
3818
  /** Access (PIN) code for the credential. */
3730
3819
  code?: (string | undefined) | null
3820
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
3821
+ is_one_time_use?: boolean | undefined
3731
3822
  card_number?: (string | undefined) | null
3732
3823
  is_issued?: boolean | undefined
3733
3824
  issued_at?: (string | undefined) | null
@@ -3832,6 +3923,8 @@ export interface Routes {
3832
3923
  display_name: string
3833
3924
  /** Access (PIN) code for the credential. */
3834
3925
  code?: (string | undefined) | null
3926
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
3927
+ is_one_time_use?: boolean | undefined
3835
3928
  card_number?: (string | undefined) | null
3836
3929
  is_issued?: boolean | undefined
3837
3930
  issued_at?: (string | undefined) | null
@@ -3981,6 +4074,8 @@ export interface Routes {
3981
4074
  display_name: string
3982
4075
  /** Access (PIN) code for the credential. */
3983
4076
  code?: (string | undefined) | null
4077
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
4078
+ is_one_time_use?: boolean | undefined
3984
4079
  card_number?: (string | undefined) | null
3985
4080
  is_issued?: boolean | undefined
3986
4081
  issued_at?: (string | undefined) | null
@@ -4085,6 +4180,8 @@ export interface Routes {
4085
4180
  display_name: string
4086
4181
  /** Access (PIN) code for the credential. */
4087
4182
  code?: (string | undefined) | null
4183
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
4184
+ is_one_time_use?: boolean | undefined
4088
4185
  card_number?: (string | undefined) | null
4089
4186
  is_issued?: boolean | undefined
4090
4187
  issued_at?: (string | undefined) | null
@@ -5094,6 +5191,8 @@ export interface Routes {
5094
5191
  display_name: string
5095
5192
  /** Access (PIN) code for the credential. */
5096
5193
  code?: (string | undefined) | null
5194
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5195
+ is_one_time_use?: boolean | undefined
5097
5196
  card_number?: (string | undefined) | null
5098
5197
  is_issued?: boolean | undefined
5099
5198
  issued_at?: (string | undefined) | null
@@ -5249,6 +5348,8 @@ export interface Routes {
5249
5348
  display_name: string
5250
5349
  /** Access (PIN) code for the credential. */
5251
5350
  code?: (string | undefined) | null
5351
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5352
+ is_one_time_use?: boolean | undefined
5252
5353
  card_number?: (string | undefined) | null
5253
5354
  is_issued?: boolean | undefined
5254
5355
  issued_at?: (string | undefined) | null
@@ -5346,7 +5447,7 @@ export interface Routes {
5346
5447
  /** ID of the ACS user to whom the new credential belongs. */
5347
5448
  acs_user_id: string
5348
5449
  /** IDs of the [`acs_entrance`s](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) for which the new credential grants access. */
5349
- allowed_acs_entrance_id?: string | undefined
5450
+ allowed_acs_entrance_id: string
5350
5451
  /** Indicates whether the code is one-time-use or reusable. */
5351
5452
  is_one_time_use?: boolean
5352
5453
  /** Date and time at which the validity of the new credential starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -5372,6 +5473,8 @@ export interface Routes {
5372
5473
  display_name: string
5373
5474
  /** Access (PIN) code for the credential. */
5374
5475
  code?: (string | undefined) | null
5476
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5477
+ is_one_time_use?: boolean | undefined
5375
5478
  card_number?: (string | undefined) | null
5376
5479
  is_issued?: boolean | undefined
5377
5480
  issued_at?: (string | undefined) | null
@@ -5499,6 +5602,8 @@ export interface Routes {
5499
5602
  display_name: string
5500
5603
  /** Access (PIN) code for the credential. */
5501
5604
  code?: (string | undefined) | null
5605
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5606
+ is_one_time_use?: boolean | undefined
5502
5607
  card_number?: (string | undefined) | null
5503
5608
  is_issued?: boolean | undefined
5504
5609
  issued_at?: (string | undefined) | null
@@ -5635,6 +5740,8 @@ export interface Routes {
5635
5740
  display_name: string
5636
5741
  /** Access (PIN) code for the credential. */
5637
5742
  code?: (string | undefined) | null
5743
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5744
+ is_one_time_use?: boolean | undefined
5638
5745
  card_number?: (string | undefined) | null
5639
5746
  is_issued?: boolean | undefined
5640
5747
  issued_at?: (string | undefined) | null
@@ -5834,6 +5941,8 @@ export interface Routes {
5834
5941
  display_name: string
5835
5942
  /** Access (PIN) code for the credential. */
5836
5943
  code?: (string | undefined) | null
5944
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5945
+ is_one_time_use?: boolean | undefined
5837
5946
  card_number?: (string | undefined) | null
5838
5947
  is_issued?: boolean | undefined
5839
5948
  issued_at?: (string | undefined) | null
@@ -5949,6 +6058,8 @@ export interface Routes {
5949
6058
  display_name: string
5950
6059
  /** Access (PIN) code for the credential. */
5951
6060
  code?: (string | undefined) | null
6061
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
6062
+ is_one_time_use?: boolean | undefined
5952
6063
  card_number?: (string | undefined) | null
5953
6064
  is_issued?: boolean | undefined
5954
6065
  issued_at?: (string | undefined) | null
@@ -6077,6 +6188,8 @@ export interface Routes {
6077
6188
  display_name: string
6078
6189
  /** Access (PIN) code for the credential. */
6079
6190
  code?: (string | undefined) | null
6191
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
6192
+ is_one_time_use?: boolean | undefined
6080
6193
  card_number?: (string | undefined) | null
6081
6194
  is_issued?: boolean | undefined
6082
6195
  issued_at?: (string | undefined) | null
@@ -6196,6 +6309,8 @@ export interface Routes {
6196
6309
  display_name: string
6197
6310
  /** Access (PIN) code for the credential. */
6198
6311
  code?: (string | undefined) | null
6312
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
6313
+ is_one_time_use?: boolean | undefined
6199
6314
  card_number?: (string | undefined) | null
6200
6315
  is_issued?: boolean | undefined
6201
6316
  issued_at?: (string | undefined) | null
@@ -6413,6 +6528,8 @@ export interface Routes {
6413
6528
  display_name: string
6414
6529
  /** Access (PIN) code for the credential. */
6415
6530
  code?: (string | undefined) | null
6531
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
6532
+ is_one_time_use?: boolean | undefined
6416
6533
  card_number?: (string | undefined) | null
6417
6534
  is_issued?: boolean | undefined
6418
6535
  issued_at?: (string | undefined) | null
@@ -6517,6 +6634,8 @@ export interface Routes {
6517
6634
  display_name: string
6518
6635
  /** Access (PIN) code for the credential. */
6519
6636
  code?: (string | undefined) | null
6637
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
6638
+ is_one_time_use?: boolean | undefined
6520
6639
  card_number?: (string | undefined) | null
6521
6640
  is_issued?: boolean | undefined
6522
6641
  issued_at?: (string | undefined) | null
@@ -6666,6 +6785,8 @@ export interface Routes {
6666
6785
  display_name: string
6667
6786
  /** Access (PIN) code for the credential. */
6668
6787
  code?: (string | undefined) | null
6788
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
6789
+ is_one_time_use?: boolean | undefined
6669
6790
  card_number?: (string | undefined) | null
6670
6791
  is_issued?: boolean | undefined
6671
6792
  issued_at?: (string | undefined) | null
@@ -6770,6 +6891,8 @@ export interface Routes {
6770
6891
  display_name: string
6771
6892
  /** Access (PIN) code for the credential. */
6772
6893
  code?: (string | undefined) | null
6894
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
6895
+ is_one_time_use?: boolean | undefined
6773
6896
  card_number?: (string | undefined) | null
6774
6897
  is_issued?: boolean | undefined
6775
6898
  issued_at?: (string | undefined) | null
@@ -7447,6 +7570,8 @@ export interface Routes {
7447
7570
  display_name: string
7448
7571
  /** Access (PIN) code for the credential. */
7449
7572
  code?: (string | undefined) | null
7573
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
7574
+ is_one_time_use?: boolean | undefined
7450
7575
  card_number?: (string | undefined) | null
7451
7576
  is_issued?: boolean | undefined
7452
7577
  issued_at?: (string | undefined) | null
@@ -7551,6 +7676,8 @@ export interface Routes {
7551
7676
  display_name: string
7552
7677
  /** Access (PIN) code for the credential. */
7553
7678
  code?: (string | undefined) | null
7679
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
7680
+ is_one_time_use?: boolean | undefined
7554
7681
  card_number?: (string | undefined) | null
7555
7682
  is_issued?: boolean | undefined
7556
7683
  issued_at?: (string | undefined) | null
@@ -7700,6 +7827,8 @@ export interface Routes {
7700
7827
  display_name: string
7701
7828
  /** Access (PIN) code for the credential. */
7702
7829
  code?: (string | undefined) | null
7830
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
7831
+ is_one_time_use?: boolean | undefined
7703
7832
  card_number?: (string | undefined) | null
7704
7833
  is_issued?: boolean | undefined
7705
7834
  issued_at?: (string | undefined) | null
@@ -7804,6 +7933,8 @@ export interface Routes {
7804
7933
  display_name: string
7805
7934
  /** Access (PIN) code for the credential. */
7806
7935
  code?: (string | undefined) | null
7936
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
7937
+ is_one_time_use?: boolean | undefined
7807
7938
  card_number?: (string | undefined) | null
7808
7939
  is_issued?: boolean | undefined
7809
7940
  issued_at?: (string | undefined) | null
@@ -8508,6 +8639,8 @@ export interface Routes {
8508
8639
  display_name: string
8509
8640
  /** Access (PIN) code for the credential. */
8510
8641
  code?: (string | undefined) | null
8642
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
8643
+ is_one_time_use?: boolean | undefined
8511
8644
  card_number?: (string | undefined) | null
8512
8645
  is_issued?: boolean | undefined
8513
8646
  issued_at?: (string | undefined) | null
@@ -10020,6 +10153,8 @@ export interface Routes {
10020
10153
  display_name: string
10021
10154
  /** Access (PIN) code for the credential. */
10022
10155
  code?: (string | undefined) | null
10156
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
10157
+ is_one_time_use?: boolean | undefined
10023
10158
  card_number?: (string | undefined) | null
10024
10159
  is_issued?: boolean | undefined
10025
10160
  issued_at?: (string | undefined) | null
@@ -10124,6 +10259,8 @@ export interface Routes {
10124
10259
  display_name: string
10125
10260
  /** Access (PIN) code for the credential. */
10126
10261
  code?: (string | undefined) | null
10262
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
10263
+ is_one_time_use?: boolean | undefined
10127
10264
  card_number?: (string | undefined) | null
10128
10265
  is_issued?: boolean | undefined
10129
10266
  issued_at?: (string | undefined) | null
@@ -10273,6 +10410,8 @@ export interface Routes {
10273
10410
  display_name: string
10274
10411
  /** Access (PIN) code for the credential. */
10275
10412
  code?: (string | undefined) | null
10413
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
10414
+ is_one_time_use?: boolean | undefined
10276
10415
  card_number?: (string | undefined) | null
10277
10416
  is_issued?: boolean | undefined
10278
10417
  issued_at?: (string | undefined) | null
@@ -10377,6 +10516,8 @@ export interface Routes {
10377
10516
  display_name: string
10378
10517
  /** Access (PIN) code for the credential. */
10379
10518
  code?: (string | undefined) | null
10519
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
10520
+ is_one_time_use?: boolean | undefined
10380
10521
  card_number?: (string | undefined) | null
10381
10522
  is_issued?: boolean | undefined
10382
10523
  issued_at?: (string | undefined) | null
@@ -11006,6 +11147,8 @@ export interface Routes {
11006
11147
  display_name: string
11007
11148
  /** Access (PIN) code for the credential. */
11008
11149
  code?: (string | undefined) | null
11150
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
11151
+ is_one_time_use?: boolean | undefined
11009
11152
  card_number?: (string | undefined) | null
11010
11153
  is_issued?: boolean | undefined
11011
11154
  issued_at?: (string | undefined) | null
@@ -11110,6 +11253,8 @@ export interface Routes {
11110
11253
  display_name: string
11111
11254
  /** Access (PIN) code for the credential. */
11112
11255
  code?: (string | undefined) | null
11256
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
11257
+ is_one_time_use?: boolean | undefined
11113
11258
  card_number?: (string | undefined) | null
11114
11259
  is_issued?: boolean | undefined
11115
11260
  issued_at?: (string | undefined) | null
@@ -11259,6 +11404,8 @@ export interface Routes {
11259
11404
  display_name: string
11260
11405
  /** Access (PIN) code for the credential. */
11261
11406
  code?: (string | undefined) | null
11407
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
11408
+ is_one_time_use?: boolean | undefined
11262
11409
  card_number?: (string | undefined) | null
11263
11410
  is_issued?: boolean | undefined
11264
11411
  issued_at?: (string | undefined) | null
@@ -11363,6 +11510,8 @@ export interface Routes {
11363
11510
  display_name: string
11364
11511
  /** Access (PIN) code for the credential. */
11365
11512
  code?: (string | undefined) | null
11513
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
11514
+ is_one_time_use?: boolean | undefined
11366
11515
  card_number?: (string | undefined) | null
11367
11516
  is_issued?: boolean | undefined
11368
11517
  issued_at?: (string | undefined) | null
@@ -17925,6 +18074,8 @@ export interface Routes {
17925
18074
  display_name: string
17926
18075
  /** Access (PIN) code for the credential. */
17927
18076
  code?: (string | undefined) | null
18077
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
18078
+ is_one_time_use?: boolean | undefined
17928
18079
  card_number?: (string | undefined) | null
17929
18080
  is_issued?: boolean | undefined
17930
18081
  issued_at?: (string | undefined) | null
@@ -18029,6 +18180,8 @@ export interface Routes {
18029
18180
  display_name: string
18030
18181
  /** Access (PIN) code for the credential. */
18031
18182
  code?: (string | undefined) | null
18183
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
18184
+ is_one_time_use?: boolean | undefined
18032
18185
  card_number?: (string | undefined) | null
18033
18186
  is_issued?: boolean | undefined
18034
18187
  issued_at?: (string | undefined) | null
@@ -18178,6 +18331,8 @@ export interface Routes {
18178
18331
  display_name: string
18179
18332
  /** Access (PIN) code for the credential. */
18180
18333
  code?: (string | undefined) | null
18334
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
18335
+ is_one_time_use?: boolean | undefined
18181
18336
  card_number?: (string | undefined) | null
18182
18337
  is_issued?: boolean | undefined
18183
18338
  issued_at?: (string | undefined) | null
@@ -18282,6 +18437,8 @@ export interface Routes {
18282
18437
  display_name: string
18283
18438
  /** Access (PIN) code for the credential. */
18284
18439
  code?: (string | undefined) | null
18440
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
18441
+ is_one_time_use?: boolean | undefined
18285
18442
  card_number?: (string | undefined) | null
18286
18443
  is_issued?: boolean | undefined
18287
18444
  issued_at?: (string | undefined) | null
@@ -18912,6 +19069,8 @@ export interface Routes {
18912
19069
  display_name: string
18913
19070
  /** Access (PIN) code for the credential. */
18914
19071
  code?: (string | undefined) | null
19072
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
19073
+ is_one_time_use?: boolean | undefined
18915
19074
  card_number?: (string | undefined) | null
18916
19075
  is_issued?: boolean | undefined
18917
19076
  issued_at?: (string | undefined) | null
@@ -19016,6 +19175,8 @@ export interface Routes {
19016
19175
  display_name: string
19017
19176
  /** Access (PIN) code for the credential. */
19018
19177
  code?: (string | undefined) | null
19178
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
19179
+ is_one_time_use?: boolean | undefined
19019
19180
  card_number?: (string | undefined) | null
19020
19181
  is_issued?: boolean | undefined
19021
19182
  issued_at?: (string | undefined) | null
@@ -19165,6 +19326,8 @@ export interface Routes {
19165
19326
  display_name: string
19166
19327
  /** Access (PIN) code for the credential. */
19167
19328
  code?: (string | undefined) | null
19329
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
19330
+ is_one_time_use?: boolean | undefined
19168
19331
  card_number?: (string | undefined) | null
19169
19332
  is_issued?: boolean | undefined
19170
19333
  issued_at?: (string | undefined) | null
@@ -19269,6 +19432,8 @@ export interface Routes {
19269
19432
  display_name: string
19270
19433
  /** Access (PIN) code for the credential. */
19271
19434
  code?: (string | undefined) | null
19435
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
19436
+ is_one_time_use?: boolean | undefined
19272
19437
  card_number?: (string | undefined) | null
19273
19438
  is_issued?: boolean | undefined
19274
19439
  issued_at?: (string | undefined) | null
@@ -21509,6 +21674,8 @@ export interface Routes {
21509
21674
  display_name: string
21510
21675
  /** Access (PIN) code for the credential. */
21511
21676
  code?: (string | undefined) | null
21677
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
21678
+ is_one_time_use?: boolean | undefined
21512
21679
  card_number?: (string | undefined) | null
21513
21680
  is_issued?: boolean | undefined
21514
21681
  issued_at?: (string | undefined) | null
@@ -21613,6 +21780,8 @@ export interface Routes {
21613
21780
  display_name: string
21614
21781
  /** Access (PIN) code for the credential. */
21615
21782
  code?: (string | undefined) | null
21783
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
21784
+ is_one_time_use?: boolean | undefined
21616
21785
  card_number?: (string | undefined) | null
21617
21786
  is_issued?: boolean | undefined
21618
21787
  issued_at?: (string | undefined) | null
@@ -21762,6 +21931,8 @@ export interface Routes {
21762
21931
  display_name: string
21763
21932
  /** Access (PIN) code for the credential. */
21764
21933
  code?: (string | undefined) | null
21934
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
21935
+ is_one_time_use?: boolean | undefined
21765
21936
  card_number?: (string | undefined) | null
21766
21937
  is_issued?: boolean | undefined
21767
21938
  issued_at?: (string | undefined) | null
@@ -21866,6 +22037,8 @@ export interface Routes {
21866
22037
  display_name: string
21867
22038
  /** Access (PIN) code for the credential. */
21868
22039
  code?: (string | undefined) | null
22040
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
22041
+ is_one_time_use?: boolean | undefined
21869
22042
  card_number?: (string | undefined) | null
21870
22043
  is_issued?: boolean | undefined
21871
22044
  issued_at?: (string | undefined) | null
@@ -22506,6 +22679,8 @@ export interface Routes {
22506
22679
  display_name: string
22507
22680
  /** Access (PIN) code for the credential. */
22508
22681
  code?: (string | undefined) | null
22682
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
22683
+ is_one_time_use?: boolean | undefined
22509
22684
  card_number?: (string | undefined) | null
22510
22685
  is_issued?: boolean | undefined
22511
22686
  issued_at?: (string | undefined) | null
@@ -22610,6 +22785,8 @@ export interface Routes {
22610
22785
  display_name: string
22611
22786
  /** Access (PIN) code for the credential. */
22612
22787
  code?: (string | undefined) | null
22788
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
22789
+ is_one_time_use?: boolean | undefined
22613
22790
  card_number?: (string | undefined) | null
22614
22791
  is_issued?: boolean | undefined
22615
22792
  issued_at?: (string | undefined) | null
@@ -22759,6 +22936,8 @@ export interface Routes {
22759
22936
  display_name: string
22760
22937
  /** Access (PIN) code for the credential. */
22761
22938
  code?: (string | undefined) | null
22939
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
22940
+ is_one_time_use?: boolean | undefined
22762
22941
  card_number?: (string | undefined) | null
22763
22942
  is_issued?: boolean | undefined
22764
22943
  issued_at?: (string | undefined) | null
@@ -22863,6 +23042,8 @@ export interface Routes {
22863
23042
  display_name: string
22864
23043
  /** Access (PIN) code for the credential. */
22865
23044
  code?: (string | undefined) | null
23045
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
23046
+ is_one_time_use?: boolean | undefined
22866
23047
  card_number?: (string | undefined) | null
22867
23048
  is_issued?: boolean | undefined
22868
23049
  issued_at?: (string | undefined) | null
@@ -23542,6 +23723,8 @@ export interface Routes {
23542
23723
  display_name: string
23543
23724
  /** Access (PIN) code for the credential. */
23544
23725
  code?: (string | undefined) | null
23726
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
23727
+ is_one_time_use?: boolean | undefined
23545
23728
  card_number?: (string | undefined) | null
23546
23729
  is_issued?: boolean | undefined
23547
23730
  issued_at?: (string | undefined) | null
@@ -23646,6 +23829,8 @@ export interface Routes {
23646
23829
  display_name: string
23647
23830
  /** Access (PIN) code for the credential. */
23648
23831
  code?: (string | undefined) | null
23832
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
23833
+ is_one_time_use?: boolean | undefined
23649
23834
  card_number?: (string | undefined) | null
23650
23835
  is_issued?: boolean | undefined
23651
23836
  issued_at?: (string | undefined) | null
@@ -23795,6 +23980,8 @@ export interface Routes {
23795
23980
  display_name: string
23796
23981
  /** Access (PIN) code for the credential. */
23797
23982
  code?: (string | undefined) | null
23983
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
23984
+ is_one_time_use?: boolean | undefined
23798
23985
  card_number?: (string | undefined) | null
23799
23986
  is_issued?: boolean | undefined
23800
23987
  issued_at?: (string | undefined) | null
@@ -23899,6 +24086,8 @@ export interface Routes {
23899
24086
  display_name: string
23900
24087
  /** Access (PIN) code for the credential. */
23901
24088
  code?: (string | undefined) | null
24089
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
24090
+ is_one_time_use?: boolean | undefined
23902
24091
  card_number?: (string | undefined) | null
23903
24092
  is_issued?: boolean | undefined
23904
24093
  issued_at?: (string | undefined) | null
@@ -24737,6 +24926,8 @@ export interface Routes {
24737
24926
  display_name: string
24738
24927
  /** Access (PIN) code for the credential. */
24739
24928
  code?: (string | undefined) | null
24929
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
24930
+ is_one_time_use?: boolean | undefined
24740
24931
  card_number?: (string | undefined) | null
24741
24932
  is_issued?: boolean | undefined
24742
24933
  issued_at?: (string | undefined) | null
@@ -24841,6 +25032,8 @@ export interface Routes {
24841
25032
  display_name: string
24842
25033
  /** Access (PIN) code for the credential. */
24843
25034
  code?: (string | undefined) | null
25035
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
25036
+ is_one_time_use?: boolean | undefined
24844
25037
  card_number?: (string | undefined) | null
24845
25038
  is_issued?: boolean | undefined
24846
25039
  issued_at?: (string | undefined) | null
@@ -24990,6 +25183,8 @@ export interface Routes {
24990
25183
  display_name: string
24991
25184
  /** Access (PIN) code for the credential. */
24992
25185
  code?: (string | undefined) | null
25186
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
25187
+ is_one_time_use?: boolean | undefined
24993
25188
  card_number?: (string | undefined) | null
24994
25189
  is_issued?: boolean | undefined
24995
25190
  issued_at?: (string | undefined) | null
@@ -25094,6 +25289,8 @@ export interface Routes {
25094
25289
  display_name: string
25095
25290
  /** Access (PIN) code for the credential. */
25096
25291
  code?: (string | undefined) | null
25292
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
25293
+ is_one_time_use?: boolean | undefined
25097
25294
  card_number?: (string | undefined) | null
25098
25295
  is_issued?: boolean | undefined
25099
25296
  issued_at?: (string | undefined) | null
@@ -25730,6 +25927,8 @@ export interface Routes {
25730
25927
  display_name: string
25731
25928
  /** Access (PIN) code for the credential. */
25732
25929
  code?: (string | undefined) | null
25930
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
25931
+ is_one_time_use?: boolean | undefined
25733
25932
  card_number?: (string | undefined) | null
25734
25933
  is_issued?: boolean | undefined
25735
25934
  issued_at?: (string | undefined) | null
@@ -25834,6 +26033,8 @@ export interface Routes {
25834
26033
  display_name: string
25835
26034
  /** Access (PIN) code for the credential. */
25836
26035
  code?: (string | undefined) | null
26036
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
26037
+ is_one_time_use?: boolean | undefined
25837
26038
  card_number?: (string | undefined) | null
25838
26039
  is_issued?: boolean | undefined
25839
26040
  issued_at?: (string | undefined) | null
@@ -25983,6 +26184,8 @@ export interface Routes {
25983
26184
  display_name: string
25984
26185
  /** Access (PIN) code for the credential. */
25985
26186
  code?: (string | undefined) | null
26187
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
26188
+ is_one_time_use?: boolean | undefined
25986
26189
  card_number?: (string | undefined) | null
25987
26190
  is_issued?: boolean | undefined
25988
26191
  issued_at?: (string | undefined) | null
@@ -26087,6 +26290,8 @@ export interface Routes {
26087
26290
  display_name: string
26088
26291
  /** Access (PIN) code for the credential. */
26089
26292
  code?: (string | undefined) | null
26293
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
26294
+ is_one_time_use?: boolean | undefined
26090
26295
  card_number?: (string | undefined) | null
26091
26296
  is_issued?: boolean | undefined
26092
26297
  issued_at?: (string | undefined) | null
@@ -27476,6 +27681,8 @@ export interface Routes {
27476
27681
  display_name: string
27477
27682
  /** Access (PIN) code for the credential. */
27478
27683
  code?: (string | undefined) | null
27684
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
27685
+ is_one_time_use?: boolean | undefined
27479
27686
  card_number?: (string | undefined) | null
27480
27687
  is_issued?: boolean | undefined
27481
27688
  issued_at?: (string | undefined) | null
@@ -27580,6 +27787,8 @@ export interface Routes {
27580
27787
  display_name: string
27581
27788
  /** Access (PIN) code for the credential. */
27582
27789
  code?: (string | undefined) | null
27790
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
27791
+ is_one_time_use?: boolean | undefined
27583
27792
  card_number?: (string | undefined) | null
27584
27793
  is_issued?: boolean | undefined
27585
27794
  issued_at?: (string | undefined) | null
@@ -27729,6 +27938,8 @@ export interface Routes {
27729
27938
  display_name: string
27730
27939
  /** Access (PIN) code for the credential. */
27731
27940
  code?: (string | undefined) | null
27941
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
27942
+ is_one_time_use?: boolean | undefined
27732
27943
  card_number?: (string | undefined) | null
27733
27944
  is_issued?: boolean | undefined
27734
27945
  issued_at?: (string | undefined) | null
@@ -27833,6 +28044,8 @@ export interface Routes {
27833
28044
  display_name: string
27834
28045
  /** Access (PIN) code for the credential. */
27835
28046
  code?: (string | undefined) | null
28047
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
28048
+ is_one_time_use?: boolean | undefined
27836
28049
  card_number?: (string | undefined) | null
27837
28050
  is_issued?: boolean | undefined
27838
28051
  issued_at?: (string | undefined) | null
@@ -28473,6 +28686,8 @@ export interface Routes {
28473
28686
  display_name: string
28474
28687
  /** Access (PIN) code for the credential. */
28475
28688
  code?: (string | undefined) | null
28689
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
28690
+ is_one_time_use?: boolean | undefined
28476
28691
  card_number?: (string | undefined) | null
28477
28692
  is_issued?: boolean | undefined
28478
28693
  issued_at?: (string | undefined) | null
@@ -28577,6 +28792,8 @@ export interface Routes {
28577
28792
  display_name: string
28578
28793
  /** Access (PIN) code for the credential. */
28579
28794
  code?: (string | undefined) | null
28795
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
28796
+ is_one_time_use?: boolean | undefined
28580
28797
  card_number?: (string | undefined) | null
28581
28798
  is_issued?: boolean | undefined
28582
28799
  issued_at?: (string | undefined) | null
@@ -28726,6 +28943,8 @@ export interface Routes {
28726
28943
  display_name: string
28727
28944
  /** Access (PIN) code for the credential. */
28728
28945
  code?: (string | undefined) | null
28946
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
28947
+ is_one_time_use?: boolean | undefined
28729
28948
  card_number?: (string | undefined) | null
28730
28949
  is_issued?: boolean | undefined
28731
28950
  issued_at?: (string | undefined) | null
@@ -28830,6 +29049,8 @@ export interface Routes {
28830
29049
  display_name: string
28831
29050
  /** Access (PIN) code for the credential. */
28832
29051
  code?: (string | undefined) | null
29052
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
29053
+ is_one_time_use?: boolean | undefined
28833
29054
  card_number?: (string | undefined) | null
28834
29055
  is_issued?: boolean | undefined
28835
29056
  issued_at?: (string | undefined) | null
@@ -31033,6 +31254,8 @@ export interface Routes {
31033
31254
  display_name: string
31034
31255
  /** Access (PIN) code for the credential. */
31035
31256
  code?: (string | undefined) | null
31257
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
31258
+ is_one_time_use?: boolean | undefined
31036
31259
  card_number?: (string | undefined) | null
31037
31260
  is_issued?: boolean | undefined
31038
31261
  issued_at?: (string | undefined) | null
@@ -31137,6 +31360,8 @@ export interface Routes {
31137
31360
  display_name: string
31138
31361
  /** Access (PIN) code for the credential. */
31139
31362
  code?: (string | undefined) | null
31363
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
31364
+ is_one_time_use?: boolean | undefined
31140
31365
  card_number?: (string | undefined) | null
31141
31366
  is_issued?: boolean | undefined
31142
31367
  issued_at?: (string | undefined) | null
@@ -31286,6 +31511,8 @@ export interface Routes {
31286
31511
  display_name: string
31287
31512
  /** Access (PIN) code for the credential. */
31288
31513
  code?: (string | undefined) | null
31514
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
31515
+ is_one_time_use?: boolean | undefined
31289
31516
  card_number?: (string | undefined) | null
31290
31517
  is_issued?: boolean | undefined
31291
31518
  issued_at?: (string | undefined) | null
@@ -31390,6 +31617,8 @@ export interface Routes {
31390
31617
  display_name: string
31391
31618
  /** Access (PIN) code for the credential. */
31392
31619
  code?: (string | undefined) | null
31620
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
31621
+ is_one_time_use?: boolean | undefined
31393
31622
  card_number?: (string | undefined) | null
31394
31623
  is_issued?: boolean | undefined
31395
31624
  issued_at?: (string | undefined) | null
@@ -32195,6 +32424,8 @@ export interface Routes {
32195
32424
  display_name: string
32196
32425
  /** Access (PIN) code for the credential. */
32197
32426
  code?: (string | undefined) | null
32427
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
32428
+ is_one_time_use?: boolean | undefined
32198
32429
  card_number?: (string | undefined) | null
32199
32430
  is_issued?: boolean | undefined
32200
32431
  issued_at?: (string | undefined) | null
@@ -32299,6 +32530,8 @@ export interface Routes {
32299
32530
  display_name: string
32300
32531
  /** Access (PIN) code for the credential. */
32301
32532
  code?: (string | undefined) | null
32533
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
32534
+ is_one_time_use?: boolean | undefined
32302
32535
  card_number?: (string | undefined) | null
32303
32536
  is_issued?: boolean | undefined
32304
32537
  issued_at?: (string | undefined) | null
@@ -32448,6 +32681,8 @@ export interface Routes {
32448
32681
  display_name: string
32449
32682
  /** Access (PIN) code for the credential. */
32450
32683
  code?: (string | undefined) | null
32684
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
32685
+ is_one_time_use?: boolean | undefined
32451
32686
  card_number?: (string | undefined) | null
32452
32687
  is_issued?: boolean | undefined
32453
32688
  issued_at?: (string | undefined) | null
@@ -32552,6 +32787,8 @@ export interface Routes {
32552
32787
  display_name: string
32553
32788
  /** Access (PIN) code for the credential. */
32554
32789
  code?: (string | undefined) | null
32790
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
32791
+ is_one_time_use?: boolean | undefined
32555
32792
  card_number?: (string | undefined) | null
32556
32793
  is_issued?: boolean | undefined
32557
32794
  issued_at?: (string | undefined) | null
@@ -33215,6 +33452,8 @@ export interface Routes {
33215
33452
  display_name: string
33216
33453
  /** Access (PIN) code for the credential. */
33217
33454
  code?: (string | undefined) | null
33455
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
33456
+ is_one_time_use?: boolean | undefined
33218
33457
  card_number?: (string | undefined) | null
33219
33458
  is_issued?: boolean | undefined
33220
33459
  issued_at?: (string | undefined) | null
@@ -33319,6 +33558,8 @@ export interface Routes {
33319
33558
  display_name: string
33320
33559
  /** Access (PIN) code for the credential. */
33321
33560
  code?: (string | undefined) | null
33561
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
33562
+ is_one_time_use?: boolean | undefined
33322
33563
  card_number?: (string | undefined) | null
33323
33564
  is_issued?: boolean | undefined
33324
33565
  issued_at?: (string | undefined) | null
@@ -33468,6 +33709,8 @@ export interface Routes {
33468
33709
  display_name: string
33469
33710
  /** Access (PIN) code for the credential. */
33470
33711
  code?: (string | undefined) | null
33712
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
33713
+ is_one_time_use?: boolean | undefined
33471
33714
  card_number?: (string | undefined) | null
33472
33715
  is_issued?: boolean | undefined
33473
33716
  issued_at?: (string | undefined) | null
@@ -33572,6 +33815,8 @@ export interface Routes {
33572
33815
  display_name: string
33573
33816
  /** Access (PIN) code for the credential. */
33574
33817
  code?: (string | undefined) | null
33818
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
33819
+ is_one_time_use?: boolean | undefined
33575
33820
  card_number?: (string | undefined) | null
33576
33821
  is_issued?: boolean | undefined
33577
33822
  issued_at?: (string | undefined) | null
@@ -36353,6 +36598,8 @@ export interface Routes {
36353
36598
  display_name: string
36354
36599
  /** Access (PIN) code for the credential. */
36355
36600
  code?: (string | undefined) | null
36601
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
36602
+ is_one_time_use?: boolean | undefined
36356
36603
  card_number?: (string | undefined) | null
36357
36604
  is_issued?: boolean | undefined
36358
36605
  issued_at?: (string | undefined) | null
@@ -36457,6 +36704,8 @@ export interface Routes {
36457
36704
  display_name: string
36458
36705
  /** Access (PIN) code for the credential. */
36459
36706
  code?: (string | undefined) | null
36707
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
36708
+ is_one_time_use?: boolean | undefined
36460
36709
  card_number?: (string | undefined) | null
36461
36710
  is_issued?: boolean | undefined
36462
36711
  issued_at?: (string | undefined) | null
@@ -36606,6 +36855,8 @@ export interface Routes {
36606
36855
  display_name: string
36607
36856
  /** Access (PIN) code for the credential. */
36608
36857
  code?: (string | undefined) | null
36858
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
36859
+ is_one_time_use?: boolean | undefined
36609
36860
  card_number?: (string | undefined) | null
36610
36861
  is_issued?: boolean | undefined
36611
36862
  issued_at?: (string | undefined) | null
@@ -36710,6 +36961,8 @@ export interface Routes {
36710
36961
  display_name: string
36711
36962
  /** Access (PIN) code for the credential. */
36712
36963
  code?: (string | undefined) | null
36964
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
36965
+ is_one_time_use?: boolean | undefined
36713
36966
  card_number?: (string | undefined) | null
36714
36967
  is_issued?: boolean | undefined
36715
36968
  issued_at?: (string | undefined) | null