@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.
@@ -129,6 +129,8 @@ export interface Routes {
129
129
  display_name: string;
130
130
  /** Access (PIN) code for the credential. */
131
131
  code?: (string | undefined) | null;
132
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
133
+ is_one_time_use?: boolean | undefined;
132
134
  card_number?: (string | undefined) | null;
133
135
  is_issued?: boolean | undefined;
134
136
  issued_at?: (string | undefined) | null;
@@ -213,6 +215,8 @@ export interface Routes {
213
215
  display_name: string;
214
216
  /** Access (PIN) code for the credential. */
215
217
  code?: (string | undefined) | null;
218
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
219
+ is_one_time_use?: boolean | undefined;
216
220
  card_number?: (string | undefined) | null;
217
221
  is_issued?: boolean | undefined;
218
222
  issued_at?: (string | undefined) | null;
@@ -334,6 +338,8 @@ export interface Routes {
334
338
  display_name: string;
335
339
  /** Access (PIN) code for the credential. */
336
340
  code?: (string | undefined) | null;
341
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
342
+ is_one_time_use?: boolean | undefined;
337
343
  card_number?: (string | undefined) | null;
338
344
  is_issued?: boolean | undefined;
339
345
  issued_at?: (string | undefined) | null;
@@ -418,6 +424,8 @@ export interface Routes {
418
424
  display_name: string;
419
425
  /** Access (PIN) code for the credential. */
420
426
  code?: (string | undefined) | null;
427
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
428
+ is_one_time_use?: boolean | undefined;
421
429
  card_number?: (string | undefined) | null;
422
430
  is_issued?: boolean | undefined;
423
431
  issued_at?: (string | undefined) | null;
@@ -1120,6 +1128,8 @@ export interface Routes {
1120
1128
  display_name: string;
1121
1129
  /** Access (PIN) code for the credential. */
1122
1130
  code?: (string | undefined) | null;
1131
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
1132
+ is_one_time_use?: boolean | undefined;
1123
1133
  card_number?: (string | undefined) | null;
1124
1134
  is_issued?: boolean | undefined;
1125
1135
  issued_at?: (string | undefined) | null;
@@ -1204,6 +1214,8 @@ export interface Routes {
1204
1214
  display_name: string;
1205
1215
  /** Access (PIN) code for the credential. */
1206
1216
  code?: (string | undefined) | null;
1217
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
1218
+ is_one_time_use?: boolean | undefined;
1207
1219
  card_number?: (string | undefined) | null;
1208
1220
  is_issued?: boolean | undefined;
1209
1221
  issued_at?: (string | undefined) | null;
@@ -1325,6 +1337,8 @@ export interface Routes {
1325
1337
  display_name: string;
1326
1338
  /** Access (PIN) code for the credential. */
1327
1339
  code?: (string | undefined) | null;
1340
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
1341
+ is_one_time_use?: boolean | undefined;
1328
1342
  card_number?: (string | undefined) | null;
1329
1343
  is_issued?: boolean | undefined;
1330
1344
  issued_at?: (string | undefined) | null;
@@ -1409,6 +1423,8 @@ export interface Routes {
1409
1423
  display_name: string;
1410
1424
  /** Access (PIN) code for the credential. */
1411
1425
  code?: (string | undefined) | null;
1426
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
1427
+ is_one_time_use?: boolean | undefined;
1412
1428
  card_number?: (string | undefined) | null;
1413
1429
  is_issued?: boolean | undefined;
1414
1430
  issued_at?: (string | undefined) | null;
@@ -2083,6 +2099,67 @@ export interface Routes {
2083
2099
  /** 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. */
2084
2100
  is_offline_access_code: boolean;
2085
2101
  };
2102
+ access_code: {
2103
+ /** Unique identifier for a group of access codes that share the same code. */
2104
+ common_code_key: string | null;
2105
+ /** Indicates whether the code is set on the device according to a preconfigured schedule. */
2106
+ is_scheduled_on_device?: boolean | undefined;
2107
+ /** 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. */
2108
+ type: 'time_bound' | 'ongoing';
2109
+ /** Indicates whether the access code is waiting for a code assignment. */
2110
+ is_waiting_for_code_assignment?: boolean | undefined;
2111
+ /** Unique identifier for the access code. */
2112
+ access_code_id: string;
2113
+ /** Unique identifier for the device associated with the access code. */
2114
+ device_id: string;
2115
+ /** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
2116
+ name: string | null;
2117
+ /** Code used for access. Typically, a numeric or alphanumeric string. */
2118
+ code: string | null;
2119
+ /** Date and time at which the access code was created. */
2120
+ created_at: string;
2121
+ /** 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. */
2122
+ errors: Array<{
2123
+ message: string;
2124
+ is_access_code_error: true;
2125
+ error_code: string;
2126
+ } | {
2127
+ message: string;
2128
+ is_device_error: true;
2129
+ error_code: string;
2130
+ } | {
2131
+ message: string;
2132
+ is_connected_account_error: true;
2133
+ error_code: string;
2134
+ }>;
2135
+ /** 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. */
2136
+ warnings: Array<{
2137
+ message: string;
2138
+ warning_code: string;
2139
+ }>;
2140
+ /** Indicates whether Seam manages the access code. */
2141
+ is_managed: true;
2142
+ /** Date and time at which the time-bound access code becomes active. */
2143
+ starts_at?: (string | null) | undefined;
2144
+ /** Date and time after which the time-bound access code becomes inactive. */
2145
+ ends_at?: (string | null) | undefined;
2146
+ /**
2147
+ 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.
2148
+ */
2149
+ status: 'setting' | 'set' | 'unset' | 'removing' | 'unknown';
2150
+ /** Indicates whether a backup access code is available for use if the primary access code is lost or compromised. */
2151
+ is_backup_access_code_available: boolean;
2152
+ /** Indicates whether the access code is a backup code. */
2153
+ is_backup?: boolean | undefined;
2154
+ /** Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code. */
2155
+ pulled_backup_access_code_id?: (string | null) | undefined;
2156
+ /** Indicates whether changes to the access code from external sources are permitted. */
2157
+ is_external_modification_allowed: boolean;
2158
+ /** Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use. */
2159
+ is_one_time_use: boolean;
2160
+ /** 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. */
2161
+ is_offline_access_code: boolean;
2162
+ };
2086
2163
  };
2087
2164
  };
2088
2165
  '/access_codes/simulate/create_unmanaged_access_code': {
@@ -2268,6 +2345,8 @@ export interface Routes {
2268
2345
  display_name: string;
2269
2346
  /** Access (PIN) code for the credential. */
2270
2347
  code?: (string | undefined) | null;
2348
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
2349
+ is_one_time_use?: boolean | undefined;
2271
2350
  card_number?: (string | undefined) | null;
2272
2351
  is_issued?: boolean | undefined;
2273
2352
  issued_at?: (string | undefined) | null;
@@ -2352,6 +2431,8 @@ export interface Routes {
2352
2431
  display_name: string;
2353
2432
  /** Access (PIN) code for the credential. */
2354
2433
  code?: (string | undefined) | null;
2434
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
2435
+ is_one_time_use?: boolean | undefined;
2355
2436
  card_number?: (string | undefined) | null;
2356
2437
  is_issued?: boolean | undefined;
2357
2438
  issued_at?: (string | undefined) | null;
@@ -2473,6 +2554,8 @@ export interface Routes {
2473
2554
  display_name: string;
2474
2555
  /** Access (PIN) code for the credential. */
2475
2556
  code?: (string | undefined) | null;
2557
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
2558
+ is_one_time_use?: boolean | undefined;
2476
2559
  card_number?: (string | undefined) | null;
2477
2560
  is_issued?: boolean | undefined;
2478
2561
  issued_at?: (string | undefined) | null;
@@ -2557,6 +2640,8 @@ export interface Routes {
2557
2640
  display_name: string;
2558
2641
  /** Access (PIN) code for the credential. */
2559
2642
  code?: (string | undefined) | null;
2643
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
2644
+ is_one_time_use?: boolean | undefined;
2560
2645
  card_number?: (string | undefined) | null;
2561
2646
  is_issued?: boolean | undefined;
2562
2647
  issued_at?: (string | undefined) | null;
@@ -3246,6 +3331,8 @@ export interface Routes {
3246
3331
  display_name: string;
3247
3332
  /** Access (PIN) code for the credential. */
3248
3333
  code?: (string | undefined) | null;
3334
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
3335
+ is_one_time_use?: boolean | undefined;
3249
3336
  card_number?: (string | undefined) | null;
3250
3337
  is_issued?: boolean | undefined;
3251
3338
  issued_at?: (string | undefined) | null;
@@ -3330,6 +3417,8 @@ export interface Routes {
3330
3417
  display_name: string;
3331
3418
  /** Access (PIN) code for the credential. */
3332
3419
  code?: (string | undefined) | null;
3420
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
3421
+ is_one_time_use?: boolean | undefined;
3333
3422
  card_number?: (string | undefined) | null;
3334
3423
  is_issued?: boolean | undefined;
3335
3424
  issued_at?: (string | undefined) | null;
@@ -3451,6 +3540,8 @@ export interface Routes {
3451
3540
  display_name: string;
3452
3541
  /** Access (PIN) code for the credential. */
3453
3542
  code?: (string | undefined) | null;
3543
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
3544
+ is_one_time_use?: boolean | undefined;
3454
3545
  card_number?: (string | undefined) | null;
3455
3546
  is_issued?: boolean | undefined;
3456
3547
  issued_at?: (string | undefined) | null;
@@ -3535,6 +3626,8 @@ export interface Routes {
3535
3626
  display_name: string;
3536
3627
  /** Access (PIN) code for the credential. */
3537
3628
  code?: (string | undefined) | null;
3629
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
3630
+ is_one_time_use?: boolean | undefined;
3538
3631
  card_number?: (string | undefined) | null;
3539
3632
  is_issued?: boolean | undefined;
3540
3633
  issued_at?: (string | undefined) | null;
@@ -4405,6 +4498,8 @@ export interface Routes {
4405
4498
  display_name: string;
4406
4499
  /** Access (PIN) code for the credential. */
4407
4500
  code?: (string | undefined) | null;
4501
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
4502
+ is_one_time_use?: boolean | undefined;
4408
4503
  card_number?: (string | undefined) | null;
4409
4504
  is_issued?: boolean | undefined;
4410
4505
  issued_at?: (string | undefined) | null;
@@ -4539,6 +4634,8 @@ export interface Routes {
4539
4634
  display_name: string;
4540
4635
  /** Access (PIN) code for the credential. */
4541
4636
  code?: (string | undefined) | null;
4637
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
4638
+ is_one_time_use?: boolean | undefined;
4542
4639
  card_number?: (string | undefined) | null;
4543
4640
  is_issued?: boolean | undefined;
4544
4641
  issued_at?: (string | undefined) | null;
@@ -4621,7 +4718,7 @@ export interface Routes {
4621
4718
  /** ID of the ACS user to whom the new credential belongs. */
4622
4719
  acs_user_id: string;
4623
4720
  /** 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. */
4624
- allowed_acs_entrance_id?: string | undefined;
4721
+ allowed_acs_entrance_id: string;
4625
4722
  /** Indicates whether the code is one-time-use or reusable. */
4626
4723
  is_one_time_use?: boolean;
4627
4724
  /** 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. */
@@ -4647,6 +4744,8 @@ export interface Routes {
4647
4744
  display_name: string;
4648
4745
  /** Access (PIN) code for the credential. */
4649
4746
  code?: (string | undefined) | null;
4747
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
4748
+ is_one_time_use?: boolean | undefined;
4650
4749
  card_number?: (string | undefined) | null;
4651
4750
  is_issued?: boolean | undefined;
4652
4751
  issued_at?: (string | undefined) | null;
@@ -4759,6 +4858,8 @@ export interface Routes {
4759
4858
  display_name: string;
4760
4859
  /** Access (PIN) code for the credential. */
4761
4860
  code?: (string | undefined) | null;
4861
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
4862
+ is_one_time_use?: boolean | undefined;
4762
4863
  card_number?: (string | undefined) | null;
4763
4864
  is_issued?: boolean | undefined;
4764
4865
  issued_at?: (string | undefined) | null;
@@ -4875,6 +4976,8 @@ export interface Routes {
4875
4976
  display_name: string;
4876
4977
  /** Access (PIN) code for the credential. */
4877
4978
  code?: (string | undefined) | null;
4979
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
4980
+ is_one_time_use?: boolean | undefined;
4878
4981
  card_number?: (string | undefined) | null;
4879
4982
  is_issued?: boolean | undefined;
4880
4983
  issued_at?: (string | undefined) | null;
@@ -5038,6 +5141,8 @@ export interface Routes {
5038
5141
  display_name: string;
5039
5142
  /** Access (PIN) code for the credential. */
5040
5143
  code?: (string | undefined) | null;
5144
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5145
+ is_one_time_use?: boolean | undefined;
5041
5146
  card_number?: (string | undefined) | null;
5042
5147
  is_issued?: boolean | undefined;
5043
5148
  issued_at?: (string | undefined) | null;
@@ -5138,6 +5243,8 @@ export interface Routes {
5138
5243
  display_name: string;
5139
5244
  /** Access (PIN) code for the credential. */
5140
5245
  code?: (string | undefined) | null;
5246
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5247
+ is_one_time_use?: boolean | undefined;
5141
5248
  card_number?: (string | undefined) | null;
5142
5249
  is_issued?: boolean | undefined;
5143
5250
  issued_at?: (string | undefined) | null;
@@ -5247,6 +5354,8 @@ export interface Routes {
5247
5354
  display_name: string;
5248
5355
  /** Access (PIN) code for the credential. */
5249
5356
  code?: (string | undefined) | null;
5357
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5358
+ is_one_time_use?: boolean | undefined;
5250
5359
  card_number?: (string | undefined) | null;
5251
5360
  is_issued?: boolean | undefined;
5252
5361
  issued_at?: (string | undefined) | null;
@@ -5351,6 +5460,8 @@ export interface Routes {
5351
5460
  display_name: string;
5352
5461
  /** Access (PIN) code for the credential. */
5353
5462
  code?: (string | undefined) | null;
5463
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5464
+ is_one_time_use?: boolean | undefined;
5354
5465
  card_number?: (string | undefined) | null;
5355
5466
  is_issued?: boolean | undefined;
5356
5467
  issued_at?: (string | undefined) | null;
@@ -5541,6 +5652,8 @@ export interface Routes {
5541
5652
  display_name: string;
5542
5653
  /** Access (PIN) code for the credential. */
5543
5654
  code?: (string | undefined) | null;
5655
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5656
+ is_one_time_use?: boolean | undefined;
5544
5657
  card_number?: (string | undefined) | null;
5545
5658
  is_issued?: boolean | undefined;
5546
5659
  issued_at?: (string | undefined) | null;
@@ -5625,6 +5738,8 @@ export interface Routes {
5625
5738
  display_name: string;
5626
5739
  /** Access (PIN) code for the credential. */
5627
5740
  code?: (string | undefined) | null;
5741
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5742
+ is_one_time_use?: boolean | undefined;
5628
5743
  card_number?: (string | undefined) | null;
5629
5744
  is_issued?: boolean | undefined;
5630
5745
  issued_at?: (string | undefined) | null;
@@ -5746,6 +5861,8 @@ export interface Routes {
5746
5861
  display_name: string;
5747
5862
  /** Access (PIN) code for the credential. */
5748
5863
  code?: (string | undefined) | null;
5864
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5865
+ is_one_time_use?: boolean | undefined;
5749
5866
  card_number?: (string | undefined) | null;
5750
5867
  is_issued?: boolean | undefined;
5751
5868
  issued_at?: (string | undefined) | null;
@@ -5830,6 +5947,8 @@ export interface Routes {
5830
5947
  display_name: string;
5831
5948
  /** Access (PIN) code for the credential. */
5832
5949
  code?: (string | undefined) | null;
5950
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
5951
+ is_one_time_use?: boolean | undefined;
5833
5952
  card_number?: (string | undefined) | null;
5834
5953
  is_issued?: boolean | undefined;
5835
5954
  issued_at?: (string | undefined) | null;
@@ -6426,6 +6545,8 @@ export interface Routes {
6426
6545
  display_name: string;
6427
6546
  /** Access (PIN) code for the credential. */
6428
6547
  code?: (string | undefined) | null;
6548
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
6549
+ is_one_time_use?: boolean | undefined;
6429
6550
  card_number?: (string | undefined) | null;
6430
6551
  is_issued?: boolean | undefined;
6431
6552
  issued_at?: (string | undefined) | null;
@@ -6510,6 +6631,8 @@ export interface Routes {
6510
6631
  display_name: string;
6511
6632
  /** Access (PIN) code for the credential. */
6512
6633
  code?: (string | undefined) | null;
6634
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
6635
+ is_one_time_use?: boolean | undefined;
6513
6636
  card_number?: (string | undefined) | null;
6514
6637
  is_issued?: boolean | undefined;
6515
6638
  issued_at?: (string | undefined) | null;
@@ -6631,6 +6754,8 @@ export interface Routes {
6631
6754
  display_name: string;
6632
6755
  /** Access (PIN) code for the credential. */
6633
6756
  code?: (string | undefined) | null;
6757
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
6758
+ is_one_time_use?: boolean | undefined;
6634
6759
  card_number?: (string | undefined) | null;
6635
6760
  is_issued?: boolean | undefined;
6636
6761
  issued_at?: (string | undefined) | null;
@@ -6715,6 +6840,8 @@ export interface Routes {
6715
6840
  display_name: string;
6716
6841
  /** Access (PIN) code for the credential. */
6717
6842
  code?: (string | undefined) | null;
6843
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
6844
+ is_one_time_use?: boolean | undefined;
6718
6845
  card_number?: (string | undefined) | null;
6719
6846
  is_issued?: boolean | undefined;
6720
6847
  issued_at?: (string | undefined) | null;
@@ -7311,6 +7438,8 @@ export interface Routes {
7311
7438
  display_name: string;
7312
7439
  /** Access (PIN) code for the credential. */
7313
7440
  code?: (string | undefined) | null;
7441
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
7442
+ is_one_time_use?: boolean | undefined;
7314
7443
  card_number?: (string | undefined) | null;
7315
7444
  is_issued?: boolean | undefined;
7316
7445
  issued_at?: (string | undefined) | null;
@@ -8554,6 +8683,8 @@ export interface Routes {
8554
8683
  display_name: string;
8555
8684
  /** Access (PIN) code for the credential. */
8556
8685
  code?: (string | undefined) | null;
8686
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
8687
+ is_one_time_use?: boolean | undefined;
8557
8688
  card_number?: (string | undefined) | null;
8558
8689
  is_issued?: boolean | undefined;
8559
8690
  issued_at?: (string | undefined) | null;
@@ -8638,6 +8769,8 @@ export interface Routes {
8638
8769
  display_name: string;
8639
8770
  /** Access (PIN) code for the credential. */
8640
8771
  code?: (string | undefined) | null;
8772
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
8773
+ is_one_time_use?: boolean | undefined;
8641
8774
  card_number?: (string | undefined) | null;
8642
8775
  is_issued?: boolean | undefined;
8643
8776
  issued_at?: (string | undefined) | null;
@@ -8759,6 +8892,8 @@ export interface Routes {
8759
8892
  display_name: string;
8760
8893
  /** Access (PIN) code for the credential. */
8761
8894
  code?: (string | undefined) | null;
8895
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
8896
+ is_one_time_use?: boolean | undefined;
8762
8897
  card_number?: (string | undefined) | null;
8763
8898
  is_issued?: boolean | undefined;
8764
8899
  issued_at?: (string | undefined) | null;
@@ -8843,6 +8978,8 @@ export interface Routes {
8843
8978
  display_name: string;
8844
8979
  /** Access (PIN) code for the credential. */
8845
8980
  code?: (string | undefined) | null;
8981
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
8982
+ is_one_time_use?: boolean | undefined;
8846
8983
  card_number?: (string | undefined) | null;
8847
8984
  is_issued?: boolean | undefined;
8848
8985
  issued_at?: (string | undefined) | null;
@@ -9394,6 +9531,8 @@ export interface Routes {
9394
9531
  display_name: string;
9395
9532
  /** Access (PIN) code for the credential. */
9396
9533
  code?: (string | undefined) | null;
9534
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
9535
+ is_one_time_use?: boolean | undefined;
9397
9536
  card_number?: (string | undefined) | null;
9398
9537
  is_issued?: boolean | undefined;
9399
9538
  issued_at?: (string | undefined) | null;
@@ -9478,6 +9617,8 @@ export interface Routes {
9478
9617
  display_name: string;
9479
9618
  /** Access (PIN) code for the credential. */
9480
9619
  code?: (string | undefined) | null;
9620
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
9621
+ is_one_time_use?: boolean | undefined;
9481
9622
  card_number?: (string | undefined) | null;
9482
9623
  is_issued?: boolean | undefined;
9483
9624
  issued_at?: (string | undefined) | null;
@@ -9599,6 +9740,8 @@ export interface Routes {
9599
9740
  display_name: string;
9600
9741
  /** Access (PIN) code for the credential. */
9601
9742
  code?: (string | undefined) | null;
9743
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
9744
+ is_one_time_use?: boolean | undefined;
9602
9745
  card_number?: (string | undefined) | null;
9603
9746
  is_issued?: boolean | undefined;
9604
9747
  issued_at?: (string | undefined) | null;
@@ -9683,6 +9826,8 @@ export interface Routes {
9683
9826
  display_name: string;
9684
9827
  /** Access (PIN) code for the credential. */
9685
9828
  code?: (string | undefined) | null;
9829
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
9830
+ is_one_time_use?: boolean | undefined;
9686
9831
  card_number?: (string | undefined) | null;
9687
9832
  is_issued?: boolean | undefined;
9688
9833
  issued_at?: (string | undefined) | null;
@@ -14265,6 +14410,8 @@ export interface Routes {
14265
14410
  display_name: string;
14266
14411
  /** Access (PIN) code for the credential. */
14267
14412
  code?: (string | undefined) | null;
14413
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
14414
+ is_one_time_use?: boolean | undefined;
14268
14415
  card_number?: (string | undefined) | null;
14269
14416
  is_issued?: boolean | undefined;
14270
14417
  issued_at?: (string | undefined) | null;
@@ -14349,6 +14496,8 @@ export interface Routes {
14349
14496
  display_name: string;
14350
14497
  /** Access (PIN) code for the credential. */
14351
14498
  code?: (string | undefined) | null;
14499
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
14500
+ is_one_time_use?: boolean | undefined;
14352
14501
  card_number?: (string | undefined) | null;
14353
14502
  is_issued?: boolean | undefined;
14354
14503
  issued_at?: (string | undefined) | null;
@@ -14470,6 +14619,8 @@ export interface Routes {
14470
14619
  display_name: string;
14471
14620
  /** Access (PIN) code for the credential. */
14472
14621
  code?: (string | undefined) | null;
14622
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
14623
+ is_one_time_use?: boolean | undefined;
14473
14624
  card_number?: (string | undefined) | null;
14474
14625
  is_issued?: boolean | undefined;
14475
14626
  issued_at?: (string | undefined) | null;
@@ -14554,6 +14705,8 @@ export interface Routes {
14554
14705
  display_name: string;
14555
14706
  /** Access (PIN) code for the credential. */
14556
14707
  code?: (string | undefined) | null;
14708
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
14709
+ is_one_time_use?: boolean | undefined;
14557
14710
  card_number?: (string | undefined) | null;
14558
14711
  is_issued?: boolean | undefined;
14559
14712
  issued_at?: (string | undefined) | null;
@@ -15106,6 +15259,8 @@ export interface Routes {
15106
15259
  display_name: string;
15107
15260
  /** Access (PIN) code for the credential. */
15108
15261
  code?: (string | undefined) | null;
15262
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
15263
+ is_one_time_use?: boolean | undefined;
15109
15264
  card_number?: (string | undefined) | null;
15110
15265
  is_issued?: boolean | undefined;
15111
15266
  issued_at?: (string | undefined) | null;
@@ -15190,6 +15345,8 @@ export interface Routes {
15190
15345
  display_name: string;
15191
15346
  /** Access (PIN) code for the credential. */
15192
15347
  code?: (string | undefined) | null;
15348
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
15349
+ is_one_time_use?: boolean | undefined;
15193
15350
  card_number?: (string | undefined) | null;
15194
15351
  is_issued?: boolean | undefined;
15195
15352
  issued_at?: (string | undefined) | null;
@@ -15311,6 +15468,8 @@ export interface Routes {
15311
15468
  display_name: string;
15312
15469
  /** Access (PIN) code for the credential. */
15313
15470
  code?: (string | undefined) | null;
15471
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
15472
+ is_one_time_use?: boolean | undefined;
15314
15473
  card_number?: (string | undefined) | null;
15315
15474
  is_issued?: boolean | undefined;
15316
15475
  issued_at?: (string | undefined) | null;
@@ -15395,6 +15554,8 @@ export interface Routes {
15395
15554
  display_name: string;
15396
15555
  /** Access (PIN) code for the credential. */
15397
15556
  code?: (string | undefined) | null;
15557
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
15558
+ is_one_time_use?: boolean | undefined;
15398
15559
  card_number?: (string | undefined) | null;
15399
15560
  is_issued?: boolean | undefined;
15400
15561
  issued_at?: (string | undefined) | null;
@@ -17049,6 +17210,8 @@ export interface Routes {
17049
17210
  display_name: string;
17050
17211
  /** Access (PIN) code for the credential. */
17051
17212
  code?: (string | undefined) | null;
17213
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
17214
+ is_one_time_use?: boolean | undefined;
17052
17215
  card_number?: (string | undefined) | null;
17053
17216
  is_issued?: boolean | undefined;
17054
17217
  issued_at?: (string | undefined) | null;
@@ -17133,6 +17296,8 @@ export interface Routes {
17133
17296
  display_name: string;
17134
17297
  /** Access (PIN) code for the credential. */
17135
17298
  code?: (string | undefined) | null;
17299
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
17300
+ is_one_time_use?: boolean | undefined;
17136
17301
  card_number?: (string | undefined) | null;
17137
17302
  is_issued?: boolean | undefined;
17138
17303
  issued_at?: (string | undefined) | null;
@@ -17254,6 +17419,8 @@ export interface Routes {
17254
17419
  display_name: string;
17255
17420
  /** Access (PIN) code for the credential. */
17256
17421
  code?: (string | undefined) | null;
17422
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
17423
+ is_one_time_use?: boolean | undefined;
17257
17424
  card_number?: (string | undefined) | null;
17258
17425
  is_issued?: boolean | undefined;
17259
17426
  issued_at?: (string | undefined) | null;
@@ -17338,6 +17505,8 @@ export interface Routes {
17338
17505
  display_name: string;
17339
17506
  /** Access (PIN) code for the credential. */
17340
17507
  code?: (string | undefined) | null;
17508
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
17509
+ is_one_time_use?: boolean | undefined;
17341
17510
  card_number?: (string | undefined) | null;
17342
17511
  is_issued?: boolean | undefined;
17343
17512
  issued_at?: (string | undefined) | null;
@@ -17900,6 +18069,8 @@ export interface Routes {
17900
18069
  display_name: string;
17901
18070
  /** Access (PIN) code for the credential. */
17902
18071
  code?: (string | undefined) | null;
18072
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
18073
+ is_one_time_use?: boolean | undefined;
17903
18074
  card_number?: (string | undefined) | null;
17904
18075
  is_issued?: boolean | undefined;
17905
18076
  issued_at?: (string | undefined) | null;
@@ -17984,6 +18155,8 @@ export interface Routes {
17984
18155
  display_name: string;
17985
18156
  /** Access (PIN) code for the credential. */
17986
18157
  code?: (string | undefined) | null;
18158
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
18159
+ is_one_time_use?: boolean | undefined;
17987
18160
  card_number?: (string | undefined) | null;
17988
18161
  is_issued?: boolean | undefined;
17989
18162
  issued_at?: (string | undefined) | null;
@@ -18105,6 +18278,8 @@ export interface Routes {
18105
18278
  display_name: string;
18106
18279
  /** Access (PIN) code for the credential. */
18107
18280
  code?: (string | undefined) | null;
18281
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
18282
+ is_one_time_use?: boolean | undefined;
18108
18283
  card_number?: (string | undefined) | null;
18109
18284
  is_issued?: boolean | undefined;
18110
18285
  issued_at?: (string | undefined) | null;
@@ -18189,6 +18364,8 @@ export interface Routes {
18189
18364
  display_name: string;
18190
18365
  /** Access (PIN) code for the credential. */
18191
18366
  code?: (string | undefined) | null;
18367
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
18368
+ is_one_time_use?: boolean | undefined;
18192
18369
  card_number?: (string | undefined) | null;
18193
18370
  is_issued?: boolean | undefined;
18194
18371
  issued_at?: (string | undefined) | null;
@@ -18790,6 +18967,8 @@ export interface Routes {
18790
18967
  display_name: string;
18791
18968
  /** Access (PIN) code for the credential. */
18792
18969
  code?: (string | undefined) | null;
18970
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
18971
+ is_one_time_use?: boolean | undefined;
18793
18972
  card_number?: (string | undefined) | null;
18794
18973
  is_issued?: boolean | undefined;
18795
18974
  issued_at?: (string | undefined) | null;
@@ -18874,6 +19053,8 @@ export interface Routes {
18874
19053
  display_name: string;
18875
19054
  /** Access (PIN) code for the credential. */
18876
19055
  code?: (string | undefined) | null;
19056
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
19057
+ is_one_time_use?: boolean | undefined;
18877
19058
  card_number?: (string | undefined) | null;
18878
19059
  is_issued?: boolean | undefined;
18879
19060
  issued_at?: (string | undefined) | null;
@@ -18995,6 +19176,8 @@ export interface Routes {
18995
19176
  display_name: string;
18996
19177
  /** Access (PIN) code for the credential. */
18997
19178
  code?: (string | undefined) | null;
19179
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
19180
+ is_one_time_use?: boolean | undefined;
18998
19181
  card_number?: (string | undefined) | null;
18999
19182
  is_issued?: boolean | undefined;
19000
19183
  issued_at?: (string | undefined) | null;
@@ -19079,6 +19262,8 @@ export interface Routes {
19079
19262
  display_name: string;
19080
19263
  /** Access (PIN) code for the credential. */
19081
19264
  code?: (string | undefined) | null;
19265
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
19266
+ is_one_time_use?: boolean | undefined;
19082
19267
  card_number?: (string | undefined) | null;
19083
19268
  is_issued?: boolean | undefined;
19084
19269
  issued_at?: (string | undefined) | null;
@@ -19815,6 +20000,8 @@ export interface Routes {
19815
20000
  display_name: string;
19816
20001
  /** Access (PIN) code for the credential. */
19817
20002
  code?: (string | undefined) | null;
20003
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
20004
+ is_one_time_use?: boolean | undefined;
19818
20005
  card_number?: (string | undefined) | null;
19819
20006
  is_issued?: boolean | undefined;
19820
20007
  issued_at?: (string | undefined) | null;
@@ -19899,6 +20086,8 @@ export interface Routes {
19899
20086
  display_name: string;
19900
20087
  /** Access (PIN) code for the credential. */
19901
20088
  code?: (string | undefined) | null;
20089
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
20090
+ is_one_time_use?: boolean | undefined;
19902
20091
  card_number?: (string | undefined) | null;
19903
20092
  is_issued?: boolean | undefined;
19904
20093
  issued_at?: (string | undefined) | null;
@@ -20020,6 +20209,8 @@ export interface Routes {
20020
20209
  display_name: string;
20021
20210
  /** Access (PIN) code for the credential. */
20022
20211
  code?: (string | undefined) | null;
20212
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
20213
+ is_one_time_use?: boolean | undefined;
20023
20214
  card_number?: (string | undefined) | null;
20024
20215
  is_issued?: boolean | undefined;
20025
20216
  issued_at?: (string | undefined) | null;
@@ -20104,6 +20295,8 @@ export interface Routes {
20104
20295
  display_name: string;
20105
20296
  /** Access (PIN) code for the credential. */
20106
20297
  code?: (string | undefined) | null;
20298
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
20299
+ is_one_time_use?: boolean | undefined;
20107
20300
  card_number?: (string | undefined) | null;
20108
20301
  is_issued?: boolean | undefined;
20109
20302
  issued_at?: (string | undefined) | null;
@@ -20662,6 +20855,8 @@ export interface Routes {
20662
20855
  display_name: string;
20663
20856
  /** Access (PIN) code for the credential. */
20664
20857
  code?: (string | undefined) | null;
20858
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
20859
+ is_one_time_use?: boolean | undefined;
20665
20860
  card_number?: (string | undefined) | null;
20666
20861
  is_issued?: boolean | undefined;
20667
20862
  issued_at?: (string | undefined) | null;
@@ -20746,6 +20941,8 @@ export interface Routes {
20746
20941
  display_name: string;
20747
20942
  /** Access (PIN) code for the credential. */
20748
20943
  code?: (string | undefined) | null;
20944
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
20945
+ is_one_time_use?: boolean | undefined;
20749
20946
  card_number?: (string | undefined) | null;
20750
20947
  is_issued?: boolean | undefined;
20751
20948
  issued_at?: (string | undefined) | null;
@@ -20867,6 +21064,8 @@ export interface Routes {
20867
21064
  display_name: string;
20868
21065
  /** Access (PIN) code for the credential. */
20869
21066
  code?: (string | undefined) | null;
21067
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
21068
+ is_one_time_use?: boolean | undefined;
20870
21069
  card_number?: (string | undefined) | null;
20871
21070
  is_issued?: boolean | undefined;
20872
21071
  issued_at?: (string | undefined) | null;
@@ -20951,6 +21150,8 @@ export interface Routes {
20951
21150
  display_name: string;
20952
21151
  /** Access (PIN) code for the credential. */
20953
21152
  code?: (string | undefined) | null;
21153
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
21154
+ is_one_time_use?: boolean | undefined;
20954
21155
  card_number?: (string | undefined) | null;
20955
21156
  is_issued?: boolean | undefined;
20956
21157
  issued_at?: (string | undefined) | null;
@@ -22080,6 +22281,8 @@ export interface Routes {
22080
22281
  display_name: string;
22081
22282
  /** Access (PIN) code for the credential. */
22082
22283
  code?: (string | undefined) | null;
22284
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
22285
+ is_one_time_use?: boolean | undefined;
22083
22286
  card_number?: (string | undefined) | null;
22084
22287
  is_issued?: boolean | undefined;
22085
22288
  issued_at?: (string | undefined) | null;
@@ -22164,6 +22367,8 @@ export interface Routes {
22164
22367
  display_name: string;
22165
22368
  /** Access (PIN) code for the credential. */
22166
22369
  code?: (string | undefined) | null;
22370
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
22371
+ is_one_time_use?: boolean | undefined;
22167
22372
  card_number?: (string | undefined) | null;
22168
22373
  is_issued?: boolean | undefined;
22169
22374
  issued_at?: (string | undefined) | null;
@@ -22285,6 +22490,8 @@ export interface Routes {
22285
22490
  display_name: string;
22286
22491
  /** Access (PIN) code for the credential. */
22287
22492
  code?: (string | undefined) | null;
22493
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
22494
+ is_one_time_use?: boolean | undefined;
22288
22495
  card_number?: (string | undefined) | null;
22289
22496
  is_issued?: boolean | undefined;
22290
22497
  issued_at?: (string | undefined) | null;
@@ -22369,6 +22576,8 @@ export interface Routes {
22369
22576
  display_name: string;
22370
22577
  /** Access (PIN) code for the credential. */
22371
22578
  code?: (string | undefined) | null;
22579
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
22580
+ is_one_time_use?: boolean | undefined;
22372
22581
  card_number?: (string | undefined) | null;
22373
22582
  is_issued?: boolean | undefined;
22374
22583
  issued_at?: (string | undefined) | null;
@@ -22931,6 +23140,8 @@ export interface Routes {
22931
23140
  display_name: string;
22932
23141
  /** Access (PIN) code for the credential. */
22933
23142
  code?: (string | undefined) | null;
23143
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
23144
+ is_one_time_use?: boolean | undefined;
22934
23145
  card_number?: (string | undefined) | null;
22935
23146
  is_issued?: boolean | undefined;
22936
23147
  issued_at?: (string | undefined) | null;
@@ -23015,6 +23226,8 @@ export interface Routes {
23015
23226
  display_name: string;
23016
23227
  /** Access (PIN) code for the credential. */
23017
23228
  code?: (string | undefined) | null;
23229
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
23230
+ is_one_time_use?: boolean | undefined;
23018
23231
  card_number?: (string | undefined) | null;
23019
23232
  is_issued?: boolean | undefined;
23020
23233
  issued_at?: (string | undefined) | null;
@@ -23136,6 +23349,8 @@ export interface Routes {
23136
23349
  display_name: string;
23137
23350
  /** Access (PIN) code for the credential. */
23138
23351
  code?: (string | undefined) | null;
23352
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
23353
+ is_one_time_use?: boolean | undefined;
23139
23354
  card_number?: (string | undefined) | null;
23140
23355
  is_issued?: boolean | undefined;
23141
23356
  issued_at?: (string | undefined) | null;
@@ -23220,6 +23435,8 @@ export interface Routes {
23220
23435
  display_name: string;
23221
23436
  /** Access (PIN) code for the credential. */
23222
23437
  code?: (string | undefined) | null;
23438
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
23439
+ is_one_time_use?: boolean | undefined;
23223
23440
  card_number?: (string | undefined) | null;
23224
23441
  is_issued?: boolean | undefined;
23225
23442
  issued_at?: (string | undefined) | null;
@@ -24837,6 +25054,8 @@ export interface Routes {
24837
25054
  display_name: string;
24838
25055
  /** Access (PIN) code for the credential. */
24839
25056
  code?: (string | undefined) | null;
25057
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
25058
+ is_one_time_use?: boolean | undefined;
24840
25059
  card_number?: (string | undefined) | null;
24841
25060
  is_issued?: boolean | undefined;
24842
25061
  issued_at?: (string | undefined) | null;
@@ -24921,6 +25140,8 @@ export interface Routes {
24921
25140
  display_name: string;
24922
25141
  /** Access (PIN) code for the credential. */
24923
25142
  code?: (string | undefined) | null;
25143
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
25144
+ is_one_time_use?: boolean | undefined;
24924
25145
  card_number?: (string | undefined) | null;
24925
25146
  is_issued?: boolean | undefined;
24926
25147
  issued_at?: (string | undefined) | null;
@@ -25042,6 +25263,8 @@ export interface Routes {
25042
25263
  display_name: string;
25043
25264
  /** Access (PIN) code for the credential. */
25044
25265
  code?: (string | undefined) | null;
25266
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
25267
+ is_one_time_use?: boolean | undefined;
25045
25268
  card_number?: (string | undefined) | null;
25046
25269
  is_issued?: boolean | undefined;
25047
25270
  issued_at?: (string | undefined) | null;
@@ -25126,6 +25349,8 @@ export interface Routes {
25126
25349
  display_name: string;
25127
25350
  /** Access (PIN) code for the credential. */
25128
25351
  code?: (string | undefined) | null;
25352
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
25353
+ is_one_time_use?: boolean | undefined;
25129
25354
  card_number?: (string | undefined) | null;
25130
25355
  is_issued?: boolean | undefined;
25131
25356
  issued_at?: (string | undefined) | null;
@@ -25853,6 +26078,8 @@ export interface Routes {
25853
26078
  display_name: string;
25854
26079
  /** Access (PIN) code for the credential. */
25855
26080
  code?: (string | undefined) | null;
26081
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
26082
+ is_one_time_use?: boolean | undefined;
25856
26083
  card_number?: (string | undefined) | null;
25857
26084
  is_issued?: boolean | undefined;
25858
26085
  issued_at?: (string | undefined) | null;
@@ -25937,6 +26164,8 @@ export interface Routes {
25937
26164
  display_name: string;
25938
26165
  /** Access (PIN) code for the credential. */
25939
26166
  code?: (string | undefined) | null;
26167
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
26168
+ is_one_time_use?: boolean | undefined;
25940
26169
  card_number?: (string | undefined) | null;
25941
26170
  is_issued?: boolean | undefined;
25942
26171
  issued_at?: (string | undefined) | null;
@@ -26058,6 +26287,8 @@ export interface Routes {
26058
26287
  display_name: string;
26059
26288
  /** Access (PIN) code for the credential. */
26060
26289
  code?: (string | undefined) | null;
26290
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
26291
+ is_one_time_use?: boolean | undefined;
26061
26292
  card_number?: (string | undefined) | null;
26062
26293
  is_issued?: boolean | undefined;
26063
26294
  issued_at?: (string | undefined) | null;
@@ -26142,6 +26373,8 @@ export interface Routes {
26142
26373
  display_name: string;
26143
26374
  /** Access (PIN) code for the credential. */
26144
26375
  code?: (string | undefined) | null;
26376
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
26377
+ is_one_time_use?: boolean | undefined;
26145
26378
  card_number?: (string | undefined) | null;
26146
26379
  is_issued?: boolean | undefined;
26147
26380
  issued_at?: (string | undefined) | null;
@@ -26723,6 +26956,8 @@ export interface Routes {
26723
26956
  display_name: string;
26724
26957
  /** Access (PIN) code for the credential. */
26725
26958
  code?: (string | undefined) | null;
26959
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
26960
+ is_one_time_use?: boolean | undefined;
26726
26961
  card_number?: (string | undefined) | null;
26727
26962
  is_issued?: boolean | undefined;
26728
26963
  issued_at?: (string | undefined) | null;
@@ -26807,6 +27042,8 @@ export interface Routes {
26807
27042
  display_name: string;
26808
27043
  /** Access (PIN) code for the credential. */
26809
27044
  code?: (string | undefined) | null;
27045
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
27046
+ is_one_time_use?: boolean | undefined;
26810
27047
  card_number?: (string | undefined) | null;
26811
27048
  is_issued?: boolean | undefined;
26812
27049
  issued_at?: (string | undefined) | null;
@@ -26928,6 +27165,8 @@ export interface Routes {
26928
27165
  display_name: string;
26929
27166
  /** Access (PIN) code for the credential. */
26930
27167
  code?: (string | undefined) | null;
27168
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
27169
+ is_one_time_use?: boolean | undefined;
26931
27170
  card_number?: (string | undefined) | null;
26932
27171
  is_issued?: boolean | undefined;
26933
27172
  issued_at?: (string | undefined) | null;
@@ -27012,6 +27251,8 @@ export interface Routes {
27012
27251
  display_name: string;
27013
27252
  /** Access (PIN) code for the credential. */
27014
27253
  code?: (string | undefined) | null;
27254
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
27255
+ is_one_time_use?: boolean | undefined;
27015
27256
  card_number?: (string | undefined) | null;
27016
27257
  is_issued?: boolean | undefined;
27017
27258
  issued_at?: (string | undefined) | null;
@@ -29290,6 +29531,8 @@ export interface Routes {
29290
29531
  display_name: string;
29291
29532
  /** Access (PIN) code for the credential. */
29292
29533
  code?: (string | undefined) | null;
29534
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
29535
+ is_one_time_use?: boolean | undefined;
29293
29536
  card_number?: (string | undefined) | null;
29294
29537
  is_issued?: boolean | undefined;
29295
29538
  issued_at?: (string | undefined) | null;
@@ -29374,6 +29617,8 @@ export interface Routes {
29374
29617
  display_name: string;
29375
29618
  /** Access (PIN) code for the credential. */
29376
29619
  code?: (string | undefined) | null;
29620
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
29621
+ is_one_time_use?: boolean | undefined;
29377
29622
  card_number?: (string | undefined) | null;
29378
29623
  is_issued?: boolean | undefined;
29379
29624
  issued_at?: (string | undefined) | null;
@@ -29495,6 +29740,8 @@ export interface Routes {
29495
29740
  display_name: string;
29496
29741
  /** Access (PIN) code for the credential. */
29497
29742
  code?: (string | undefined) | null;
29743
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
29744
+ is_one_time_use?: boolean | undefined;
29498
29745
  card_number?: (string | undefined) | null;
29499
29746
  is_issued?: boolean | undefined;
29500
29747
  issued_at?: (string | undefined) | null;
@@ -29579,6 +29826,8 @@ export interface Routes {
29579
29826
  display_name: string;
29580
29827
  /** Access (PIN) code for the credential. */
29581
29828
  code?: (string | undefined) | null;
29829
+ /** Indicates whether the credential can only be used once. If "true," the code becomes invalid after the first use. */
29830
+ is_one_time_use?: boolean | undefined;
29582
29831
  card_number?: (string | undefined) | null;
29583
29832
  is_issued?: boolean | undefined;
29584
29833
  issued_at?: (string | undefined) | null;