@seamapi/types 1.932.0 → 1.933.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.
@@ -12536,52 +12536,52 @@ export type Routes = {
12536
12536
  supported_code_lengths?: (number[] | undefined) | undefined;
12537
12537
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
12538
12538
  offline_time_frame_options?: ({
12539
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
12539
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
12540
12540
  display_name: string;
12541
12541
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
12542
12542
  min_duration?: string | undefined;
12543
12543
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
12544
12544
  max_duration?: string | undefined;
12545
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12545
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12546
12546
  matching_start_end_time?: true | undefined;
12547
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12547
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12548
12548
  time_pairs?: {
12549
- /** Label for the check-in/check-out time pairing. */
12549
+ /** Label for the start/end time pairing. */
12550
12550
  display_name: string;
12551
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12552
- check_in_time: string;
12553
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
12554
- check_out_time: string;
12551
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12552
+ start_time: string;
12553
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
12554
+ end_time: string;
12555
12555
  }[] | undefined;
12556
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12556
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12557
12557
  start_date_recurrence_rule?: string | undefined;
12558
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12558
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12559
12559
  end_date_recurrence_rule?: string | undefined;
12560
12560
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
12561
12561
  time_zone?: string | undefined;
12562
12562
  }[] | undefined) | undefined;
12563
12563
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
12564
12564
  online_time_frame_options?: ({
12565
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
12565
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
12566
12566
  display_name: string;
12567
12567
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
12568
12568
  min_duration?: string | undefined;
12569
12569
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
12570
12570
  max_duration?: string | undefined;
12571
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12571
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12572
12572
  matching_start_end_time?: true | undefined;
12573
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12573
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12574
12574
  time_pairs?: {
12575
- /** Label for the check-in/check-out time pairing. */
12575
+ /** Label for the start/end time pairing. */
12576
12576
  display_name: string;
12577
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12578
- check_in_time: string;
12579
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
12580
- check_out_time: string;
12577
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12578
+ start_time: string;
12579
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
12580
+ end_time: string;
12581
12581
  }[] | undefined;
12582
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12582
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12583
12583
  start_date_recurrence_rule?: string | undefined;
12584
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12584
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12585
12585
  end_date_recurrence_rule?: string | undefined;
12586
12586
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
12587
12587
  time_zone?: string | undefined;
@@ -19236,52 +19236,52 @@ export type Routes = {
19236
19236
  supported_code_lengths?: (number[] | undefined) | undefined;
19237
19237
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
19238
19238
  offline_time_frame_options?: ({
19239
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
19239
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
19240
19240
  display_name: string;
19241
19241
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
19242
19242
  min_duration?: string | undefined;
19243
19243
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
19244
19244
  max_duration?: string | undefined;
19245
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19245
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19246
19246
  matching_start_end_time?: true | undefined;
19247
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19247
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19248
19248
  time_pairs?: {
19249
- /** Label for the check-in/check-out time pairing. */
19249
+ /** Label for the start/end time pairing. */
19250
19250
  display_name: string;
19251
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19252
- check_in_time: string;
19253
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
19254
- check_out_time: string;
19251
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19252
+ start_time: string;
19253
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
19254
+ end_time: string;
19255
19255
  }[] | undefined;
19256
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19256
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19257
19257
  start_date_recurrence_rule?: string | undefined;
19258
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19258
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19259
19259
  end_date_recurrence_rule?: string | undefined;
19260
19260
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
19261
19261
  time_zone?: string | undefined;
19262
19262
  }[] | undefined) | undefined;
19263
19263
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
19264
19264
  online_time_frame_options?: ({
19265
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
19265
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
19266
19266
  display_name: string;
19267
19267
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
19268
19268
  min_duration?: string | undefined;
19269
19269
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
19270
19270
  max_duration?: string | undefined;
19271
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19271
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19272
19272
  matching_start_end_time?: true | undefined;
19273
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19273
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19274
19274
  time_pairs?: {
19275
- /** Label for the check-in/check-out time pairing. */
19275
+ /** Label for the start/end time pairing. */
19276
19276
  display_name: string;
19277
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19278
- check_in_time: string;
19279
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
19280
- check_out_time: string;
19277
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19278
+ start_time: string;
19279
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
19280
+ end_time: string;
19281
19281
  }[] | undefined;
19282
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19282
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19283
19283
  start_date_recurrence_rule?: string | undefined;
19284
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19284
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19285
19285
  end_date_recurrence_rule?: string | undefined;
19286
19286
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
19287
19287
  time_zone?: string | undefined;
@@ -41708,52 +41708,52 @@ export type Routes = {
41708
41708
  supported_code_lengths?: (number[] | undefined) | undefined;
41709
41709
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
41710
41710
  offline_time_frame_options?: ({
41711
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
41711
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
41712
41712
  display_name: string;
41713
41713
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
41714
41714
  min_duration?: string | undefined;
41715
41715
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
41716
41716
  max_duration?: string | undefined;
41717
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41717
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41718
41718
  matching_start_end_time?: true | undefined;
41719
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41719
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41720
41720
  time_pairs?: {
41721
- /** Label for the check-in/check-out time pairing. */
41721
+ /** Label for the start/end time pairing. */
41722
41722
  display_name: string;
41723
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41724
- check_in_time: string;
41725
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
41726
- check_out_time: string;
41723
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41724
+ start_time: string;
41725
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
41726
+ end_time: string;
41727
41727
  }[] | undefined;
41728
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41728
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41729
41729
  start_date_recurrence_rule?: string | undefined;
41730
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41730
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41731
41731
  end_date_recurrence_rule?: string | undefined;
41732
41732
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
41733
41733
  time_zone?: string | undefined;
41734
41734
  }[] | undefined) | undefined;
41735
41735
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
41736
41736
  online_time_frame_options?: ({
41737
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
41737
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
41738
41738
  display_name: string;
41739
41739
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
41740
41740
  min_duration?: string | undefined;
41741
41741
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
41742
41742
  max_duration?: string | undefined;
41743
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41743
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41744
41744
  matching_start_end_time?: true | undefined;
41745
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41745
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41746
41746
  time_pairs?: {
41747
- /** Label for the check-in/check-out time pairing. */
41747
+ /** Label for the start/end time pairing. */
41748
41748
  display_name: string;
41749
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41750
- check_in_time: string;
41751
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
41752
- check_out_time: string;
41749
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41750
+ start_time: string;
41751
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
41752
+ end_time: string;
41753
41753
  }[] | undefined;
41754
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41754
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41755
41755
  start_date_recurrence_rule?: string | undefined;
41756
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41756
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41757
41757
  end_date_recurrence_rule?: string | undefined;
41758
41758
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
41759
41759
  time_zone?: string | undefined;
@@ -43202,52 +43202,52 @@ export type Routes = {
43202
43202
  supported_code_lengths?: (number[] | undefined) | undefined;
43203
43203
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
43204
43204
  offline_time_frame_options?: ({
43205
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
43205
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
43206
43206
  display_name: string;
43207
43207
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
43208
43208
  min_duration?: string | undefined;
43209
43209
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
43210
43210
  max_duration?: string | undefined;
43211
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43211
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43212
43212
  matching_start_end_time?: true | undefined;
43213
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43213
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43214
43214
  time_pairs?: {
43215
- /** Label for the check-in/check-out time pairing. */
43215
+ /** Label for the start/end time pairing. */
43216
43216
  display_name: string;
43217
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43218
- check_in_time: string;
43219
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
43220
- check_out_time: string;
43217
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43218
+ start_time: string;
43219
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
43220
+ end_time: string;
43221
43221
  }[] | undefined;
43222
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43222
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43223
43223
  start_date_recurrence_rule?: string | undefined;
43224
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43224
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43225
43225
  end_date_recurrence_rule?: string | undefined;
43226
43226
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
43227
43227
  time_zone?: string | undefined;
43228
43228
  }[] | undefined) | undefined;
43229
43229
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
43230
43230
  online_time_frame_options?: ({
43231
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
43231
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
43232
43232
  display_name: string;
43233
43233
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
43234
43234
  min_duration?: string | undefined;
43235
43235
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
43236
43236
  max_duration?: string | undefined;
43237
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43237
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43238
43238
  matching_start_end_time?: true | undefined;
43239
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43239
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43240
43240
  time_pairs?: {
43241
- /** Label for the check-in/check-out time pairing. */
43241
+ /** Label for the start/end time pairing. */
43242
43242
  display_name: string;
43243
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43244
- check_in_time: string;
43245
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
43246
- check_out_time: string;
43243
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43244
+ start_time: string;
43245
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
43246
+ end_time: string;
43247
43247
  }[] | undefined;
43248
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43248
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43249
43249
  start_date_recurrence_rule?: string | undefined;
43250
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43250
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43251
43251
  end_date_recurrence_rule?: string | undefined;
43252
43252
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
43253
43253
  time_zone?: string | undefined;
@@ -53763,52 +53763,52 @@ export type Routes = {
53763
53763
  supported_code_lengths?: (number[] | undefined) | undefined;
53764
53764
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
53765
53765
  offline_time_frame_options?: ({
53766
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
53766
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
53767
53767
  display_name: string;
53768
53768
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
53769
53769
  min_duration?: string | undefined;
53770
53770
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
53771
53771
  max_duration?: string | undefined;
53772
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53772
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53773
53773
  matching_start_end_time?: true | undefined;
53774
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53774
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53775
53775
  time_pairs?: {
53776
- /** Label for the check-in/check-out time pairing. */
53776
+ /** Label for the start/end time pairing. */
53777
53777
  display_name: string;
53778
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53779
- check_in_time: string;
53780
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
53781
- check_out_time: string;
53778
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53779
+ start_time: string;
53780
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
53781
+ end_time: string;
53782
53782
  }[] | undefined;
53783
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53783
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53784
53784
  start_date_recurrence_rule?: string | undefined;
53785
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53785
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53786
53786
  end_date_recurrence_rule?: string | undefined;
53787
53787
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
53788
53788
  time_zone?: string | undefined;
53789
53789
  }[] | undefined) | undefined;
53790
53790
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
53791
53791
  online_time_frame_options?: ({
53792
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
53792
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
53793
53793
  display_name: string;
53794
53794
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
53795
53795
  min_duration?: string | undefined;
53796
53796
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
53797
53797
  max_duration?: string | undefined;
53798
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53798
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53799
53799
  matching_start_end_time?: true | undefined;
53800
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53800
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53801
53801
  time_pairs?: {
53802
- /** Label for the check-in/check-out time pairing. */
53802
+ /** Label for the start/end time pairing. */
53803
53803
  display_name: string;
53804
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53805
- check_in_time: string;
53806
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
53807
- check_out_time: string;
53804
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53805
+ start_time: string;
53806
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
53807
+ end_time: string;
53808
53808
  }[] | undefined;
53809
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53809
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53810
53810
  start_date_recurrence_rule?: string | undefined;
53811
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53811
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53812
53812
  end_date_recurrence_rule?: string | undefined;
53813
53813
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
53814
53814
  time_zone?: string | undefined;
@@ -55207,52 +55207,52 @@ export type Routes = {
55207
55207
  supported_code_lengths?: (number[] | undefined) | undefined;
55208
55208
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
55209
55209
  offline_time_frame_options?: ({
55210
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
55210
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
55211
55211
  display_name: string;
55212
55212
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
55213
55213
  min_duration?: string | undefined;
55214
55214
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
55215
55215
  max_duration?: string | undefined;
55216
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55216
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55217
55217
  matching_start_end_time?: true | undefined;
55218
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55218
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55219
55219
  time_pairs?: {
55220
- /** Label for the check-in/check-out time pairing. */
55220
+ /** Label for the start/end time pairing. */
55221
55221
  display_name: string;
55222
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55223
- check_in_time: string;
55224
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
55225
- check_out_time: string;
55222
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55223
+ start_time: string;
55224
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
55225
+ end_time: string;
55226
55226
  }[] | undefined;
55227
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55227
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55228
55228
  start_date_recurrence_rule?: string | undefined;
55229
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55229
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55230
55230
  end_date_recurrence_rule?: string | undefined;
55231
55231
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
55232
55232
  time_zone?: string | undefined;
55233
55233
  }[] | undefined) | undefined;
55234
55234
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
55235
55235
  online_time_frame_options?: ({
55236
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
55236
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
55237
55237
  display_name: string;
55238
55238
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
55239
55239
  min_duration?: string | undefined;
55240
55240
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
55241
55241
  max_duration?: string | undefined;
55242
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55242
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55243
55243
  matching_start_end_time?: true | undefined;
55244
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55244
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55245
55245
  time_pairs?: {
55246
- /** Label for the check-in/check-out time pairing. */
55246
+ /** Label for the start/end time pairing. */
55247
55247
  display_name: string;
55248
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55249
- check_in_time: string;
55250
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
55251
- check_out_time: string;
55248
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55249
+ start_time: string;
55250
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
55251
+ end_time: string;
55252
55252
  }[] | undefined;
55253
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55253
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55254
55254
  start_date_recurrence_rule?: string | undefined;
55255
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55255
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55256
55256
  end_date_recurrence_rule?: string | undefined;
55257
55257
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
55258
55258
  time_zone?: string | undefined;
@@ -56701,52 +56701,52 @@ export type Routes = {
56701
56701
  supported_code_lengths?: (number[] | undefined) | undefined;
56702
56702
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
56703
56703
  offline_time_frame_options?: ({
56704
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
56704
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
56705
56705
  display_name: string;
56706
56706
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
56707
56707
  min_duration?: string | undefined;
56708
56708
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
56709
56709
  max_duration?: string | undefined;
56710
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56710
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56711
56711
  matching_start_end_time?: true | undefined;
56712
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56712
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56713
56713
  time_pairs?: {
56714
- /** Label for the check-in/check-out time pairing. */
56714
+ /** Label for the start/end time pairing. */
56715
56715
  display_name: string;
56716
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56717
- check_in_time: string;
56718
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
56719
- check_out_time: string;
56716
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56717
+ start_time: string;
56718
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
56719
+ end_time: string;
56720
56720
  }[] | undefined;
56721
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56721
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56722
56722
  start_date_recurrence_rule?: string | undefined;
56723
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56723
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56724
56724
  end_date_recurrence_rule?: string | undefined;
56725
56725
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
56726
56726
  time_zone?: string | undefined;
56727
56727
  }[] | undefined) | undefined;
56728
56728
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
56729
56729
  online_time_frame_options?: ({
56730
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
56730
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
56731
56731
  display_name: string;
56732
56732
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
56733
56733
  min_duration?: string | undefined;
56734
56734
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
56735
56735
  max_duration?: string | undefined;
56736
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56736
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56737
56737
  matching_start_end_time?: true | undefined;
56738
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56738
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56739
56739
  time_pairs?: {
56740
- /** Label for the check-in/check-out time pairing. */
56740
+ /** Label for the start/end time pairing. */
56741
56741
  display_name: string;
56742
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56743
- check_in_time: string;
56744
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
56745
- check_out_time: string;
56742
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56743
+ start_time: string;
56744
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
56745
+ end_time: string;
56746
56746
  }[] | undefined;
56747
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56747
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56748
56748
  start_date_recurrence_rule?: string | undefined;
56749
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56749
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56750
56750
  end_date_recurrence_rule?: string | undefined;
56751
56751
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
56752
56752
  time_zone?: string | undefined;
@@ -58144,52 +58144,52 @@ export type Routes = {
58144
58144
  supported_code_lengths?: (number[] | undefined) | undefined;
58145
58145
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
58146
58146
  offline_time_frame_options?: ({
58147
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
58147
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
58148
58148
  display_name: string;
58149
58149
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
58150
58150
  min_duration?: string | undefined;
58151
58151
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
58152
58152
  max_duration?: string | undefined;
58153
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58153
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58154
58154
  matching_start_end_time?: true | undefined;
58155
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58155
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58156
58156
  time_pairs?: {
58157
- /** Label for the check-in/check-out time pairing. */
58157
+ /** Label for the start/end time pairing. */
58158
58158
  display_name: string;
58159
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58160
- check_in_time: string;
58161
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
58162
- check_out_time: string;
58159
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58160
+ start_time: string;
58161
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
58162
+ end_time: string;
58163
58163
  }[] | undefined;
58164
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58164
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58165
58165
  start_date_recurrence_rule?: string | undefined;
58166
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58166
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58167
58167
  end_date_recurrence_rule?: string | undefined;
58168
58168
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
58169
58169
  time_zone?: string | undefined;
58170
58170
  }[] | undefined) | undefined;
58171
58171
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
58172
58172
  online_time_frame_options?: ({
58173
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
58173
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
58174
58174
  display_name: string;
58175
58175
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
58176
58176
  min_duration?: string | undefined;
58177
58177
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
58178
58178
  max_duration?: string | undefined;
58179
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58179
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58180
58180
  matching_start_end_time?: true | undefined;
58181
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58181
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58182
58182
  time_pairs?: {
58183
- /** Label for the check-in/check-out time pairing. */
58183
+ /** Label for the start/end time pairing. */
58184
58184
  display_name: string;
58185
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58186
- check_in_time: string;
58187
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
58188
- check_out_time: string;
58185
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58186
+ start_time: string;
58187
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
58188
+ end_time: string;
58189
58189
  }[] | undefined;
58190
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58190
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58191
58191
  start_date_recurrence_rule?: string | undefined;
58192
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58192
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58193
58193
  end_date_recurrence_rule?: string | undefined;
58194
58194
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
58195
58195
  time_zone?: string | undefined;
@@ -66364,52 +66364,52 @@ export type Routes = {
66364
66364
  supported_code_lengths?: (number[] | undefined) | undefined;
66365
66365
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
66366
66366
  offline_time_frame_options?: ({
66367
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
66367
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
66368
66368
  display_name: string;
66369
66369
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
66370
66370
  min_duration?: string | undefined;
66371
66371
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
66372
66372
  max_duration?: string | undefined;
66373
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66373
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66374
66374
  matching_start_end_time?: true | undefined;
66375
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66375
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66376
66376
  time_pairs?: {
66377
- /** Label for the check-in/check-out time pairing. */
66377
+ /** Label for the start/end time pairing. */
66378
66378
  display_name: string;
66379
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66380
- check_in_time: string;
66381
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
66382
- check_out_time: string;
66379
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66380
+ start_time: string;
66381
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
66382
+ end_time: string;
66383
66383
  }[] | undefined;
66384
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66384
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66385
66385
  start_date_recurrence_rule?: string | undefined;
66386
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66386
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66387
66387
  end_date_recurrence_rule?: string | undefined;
66388
66388
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
66389
66389
  time_zone?: string | undefined;
66390
66390
  }[] | undefined) | undefined;
66391
66391
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
66392
66392
  online_time_frame_options?: ({
66393
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
66393
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
66394
66394
  display_name: string;
66395
66395
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
66396
66396
  min_duration?: string | undefined;
66397
66397
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
66398
66398
  max_duration?: string | undefined;
66399
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66399
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66400
66400
  matching_start_end_time?: true | undefined;
66401
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66401
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66402
66402
  time_pairs?: {
66403
- /** Label for the check-in/check-out time pairing. */
66403
+ /** Label for the start/end time pairing. */
66404
66404
  display_name: string;
66405
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66406
- check_in_time: string;
66407
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
66408
- check_out_time: string;
66405
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66406
+ start_time: string;
66407
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
66408
+ end_time: string;
66409
66409
  }[] | undefined;
66410
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66410
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66411
66411
  start_date_recurrence_rule?: string | undefined;
66412
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66412
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66413
66413
  end_date_recurrence_rule?: string | undefined;
66414
66414
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
66415
66415
  time_zone?: string | undefined;
@@ -67807,52 +67807,52 @@ export type Routes = {
67807
67807
  supported_code_lengths?: (number[] | undefined) | undefined;
67808
67808
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
67809
67809
  offline_time_frame_options?: ({
67810
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
67810
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
67811
67811
  display_name: string;
67812
67812
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
67813
67813
  min_duration?: string | undefined;
67814
67814
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
67815
67815
  max_duration?: string | undefined;
67816
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67816
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67817
67817
  matching_start_end_time?: true | undefined;
67818
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67818
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67819
67819
  time_pairs?: {
67820
- /** Label for the check-in/check-out time pairing. */
67820
+ /** Label for the start/end time pairing. */
67821
67821
  display_name: string;
67822
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67823
- check_in_time: string;
67824
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
67825
- check_out_time: string;
67822
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67823
+ start_time: string;
67824
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
67825
+ end_time: string;
67826
67826
  }[] | undefined;
67827
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67827
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67828
67828
  start_date_recurrence_rule?: string | undefined;
67829
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67829
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67830
67830
  end_date_recurrence_rule?: string | undefined;
67831
67831
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
67832
67832
  time_zone?: string | undefined;
67833
67833
  }[] | undefined) | undefined;
67834
67834
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
67835
67835
  online_time_frame_options?: ({
67836
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
67836
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
67837
67837
  display_name: string;
67838
67838
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
67839
67839
  min_duration?: string | undefined;
67840
67840
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
67841
67841
  max_duration?: string | undefined;
67842
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67842
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67843
67843
  matching_start_end_time?: true | undefined;
67844
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67844
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67845
67845
  time_pairs?: {
67846
- /** Label for the check-in/check-out time pairing. */
67846
+ /** Label for the start/end time pairing. */
67847
67847
  display_name: string;
67848
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67849
- check_in_time: string;
67850
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
67851
- check_out_time: string;
67848
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67849
+ start_time: string;
67850
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
67851
+ end_time: string;
67852
67852
  }[] | undefined;
67853
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67853
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67854
67854
  start_date_recurrence_rule?: string | undefined;
67855
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67855
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67856
67856
  end_date_recurrence_rule?: string | undefined;
67857
67857
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
67858
67858
  time_zone?: string | undefined;
@@ -83319,52 +83319,52 @@ export type Routes = {
83319
83319
  supported_code_lengths?: (number[] | undefined) | undefined;
83320
83320
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
83321
83321
  offline_time_frame_options?: ({
83322
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
83322
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
83323
83323
  display_name: string;
83324
83324
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
83325
83325
  min_duration?: string | undefined;
83326
83326
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
83327
83327
  max_duration?: string | undefined;
83328
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83328
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83329
83329
  matching_start_end_time?: true | undefined;
83330
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83330
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83331
83331
  time_pairs?: {
83332
- /** Label for the check-in/check-out time pairing. */
83332
+ /** Label for the start/end time pairing. */
83333
83333
  display_name: string;
83334
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83335
- check_in_time: string;
83336
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
83337
- check_out_time: string;
83334
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83335
+ start_time: string;
83336
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
83337
+ end_time: string;
83338
83338
  }[] | undefined;
83339
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83339
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83340
83340
  start_date_recurrence_rule?: string | undefined;
83341
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83341
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83342
83342
  end_date_recurrence_rule?: string | undefined;
83343
83343
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
83344
83344
  time_zone?: string | undefined;
83345
83345
  }[] | undefined) | undefined;
83346
83346
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
83347
83347
  online_time_frame_options?: ({
83348
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
83348
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
83349
83349
  display_name: string;
83350
83350
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
83351
83351
  min_duration?: string | undefined;
83352
83352
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
83353
83353
  max_duration?: string | undefined;
83354
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83354
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83355
83355
  matching_start_end_time?: true | undefined;
83356
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83356
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83357
83357
  time_pairs?: {
83358
- /** Label for the check-in/check-out time pairing. */
83358
+ /** Label for the start/end time pairing. */
83359
83359
  display_name: string;
83360
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83361
- check_in_time: string;
83362
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
83363
- check_out_time: string;
83360
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83361
+ start_time: string;
83362
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
83363
+ end_time: string;
83364
83364
  }[] | undefined;
83365
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83365
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83366
83366
  start_date_recurrence_rule?: string | undefined;
83367
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83367
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83368
83368
  end_date_recurrence_rule?: string | undefined;
83369
83369
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
83370
83370
  time_zone?: string | undefined;
@@ -90770,52 +90770,52 @@ export type Routes = {
90770
90770
  supported_code_lengths?: (number[] | undefined) | undefined;
90771
90771
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
90772
90772
  offline_time_frame_options?: ({
90773
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
90773
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
90774
90774
  display_name: string;
90775
90775
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
90776
90776
  min_duration?: string | undefined;
90777
90777
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
90778
90778
  max_duration?: string | undefined;
90779
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90779
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90780
90780
  matching_start_end_time?: true | undefined;
90781
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90781
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90782
90782
  time_pairs?: {
90783
- /** Label for the check-in/check-out time pairing. */
90783
+ /** Label for the start/end time pairing. */
90784
90784
  display_name: string;
90785
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90786
- check_in_time: string;
90787
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
90788
- check_out_time: string;
90785
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90786
+ start_time: string;
90787
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
90788
+ end_time: string;
90789
90789
  }[] | undefined;
90790
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90790
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90791
90791
  start_date_recurrence_rule?: string | undefined;
90792
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90792
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90793
90793
  end_date_recurrence_rule?: string | undefined;
90794
90794
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
90795
90795
  time_zone?: string | undefined;
90796
90796
  }[] | undefined) | undefined;
90797
90797
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
90798
90798
  online_time_frame_options?: ({
90799
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
90799
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
90800
90800
  display_name: string;
90801
90801
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
90802
90802
  min_duration?: string | undefined;
90803
90803
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
90804
90804
  max_duration?: string | undefined;
90805
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90805
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90806
90806
  matching_start_end_time?: true | undefined;
90807
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90807
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90808
90808
  time_pairs?: {
90809
- /** Label for the check-in/check-out time pairing. */
90809
+ /** Label for the start/end time pairing. */
90810
90810
  display_name: string;
90811
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90812
- check_in_time: string;
90813
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
90814
- check_out_time: string;
90811
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90812
+ start_time: string;
90813
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
90814
+ end_time: string;
90815
90815
  }[] | undefined;
90816
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90816
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90817
90817
  start_date_recurrence_rule?: string | undefined;
90818
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90818
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90819
90819
  end_date_recurrence_rule?: string | undefined;
90820
90820
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
90821
90821
  time_zone?: string | undefined;
@@ -95640,52 +95640,52 @@ export type Routes = {
95640
95640
  supported_code_lengths?: (number[] | undefined) | undefined;
95641
95641
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
95642
95642
  offline_time_frame_options?: ({
95643
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
95643
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
95644
95644
  display_name: string;
95645
95645
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
95646
95646
  min_duration?: string | undefined;
95647
95647
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
95648
95648
  max_duration?: string | undefined;
95649
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95649
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95650
95650
  matching_start_end_time?: true | undefined;
95651
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95651
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95652
95652
  time_pairs?: {
95653
- /** Label for the check-in/check-out time pairing. */
95653
+ /** Label for the start/end time pairing. */
95654
95654
  display_name: string;
95655
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95656
- check_in_time: string;
95657
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
95658
- check_out_time: string;
95655
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95656
+ start_time: string;
95657
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
95658
+ end_time: string;
95659
95659
  }[] | undefined;
95660
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95660
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95661
95661
  start_date_recurrence_rule?: string | undefined;
95662
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95662
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95663
95663
  end_date_recurrence_rule?: string | undefined;
95664
95664
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
95665
95665
  time_zone?: string | undefined;
95666
95666
  }[] | undefined) | undefined;
95667
95667
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
95668
95668
  online_time_frame_options?: ({
95669
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
95669
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
95670
95670
  display_name: string;
95671
95671
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
95672
95672
  min_duration?: string | undefined;
95673
95673
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
95674
95674
  max_duration?: string | undefined;
95675
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95675
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95676
95676
  matching_start_end_time?: true | undefined;
95677
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95677
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95678
95678
  time_pairs?: {
95679
- /** Label for the check-in/check-out time pairing. */
95679
+ /** Label for the start/end time pairing. */
95680
95680
  display_name: string;
95681
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95682
- check_in_time: string;
95683
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
95684
- check_out_time: string;
95681
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95682
+ start_time: string;
95683
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
95684
+ end_time: string;
95685
95685
  }[] | undefined;
95686
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95686
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95687
95687
  start_date_recurrence_rule?: string | undefined;
95688
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95688
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95689
95689
  end_date_recurrence_rule?: string | undefined;
95690
95690
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
95691
95691
  time_zone?: string | undefined;
@@ -97083,52 +97083,52 @@ export type Routes = {
97083
97083
  supported_code_lengths?: (number[] | undefined) | undefined;
97084
97084
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
97085
97085
  offline_time_frame_options?: ({
97086
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
97086
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
97087
97087
  display_name: string;
97088
97088
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
97089
97089
  min_duration?: string | undefined;
97090
97090
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
97091
97091
  max_duration?: string | undefined;
97092
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97092
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97093
97093
  matching_start_end_time?: true | undefined;
97094
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97094
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97095
97095
  time_pairs?: {
97096
- /** Label for the check-in/check-out time pairing. */
97096
+ /** Label for the start/end time pairing. */
97097
97097
  display_name: string;
97098
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97099
- check_in_time: string;
97100
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
97101
- check_out_time: string;
97098
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97099
+ start_time: string;
97100
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
97101
+ end_time: string;
97102
97102
  }[] | undefined;
97103
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97103
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97104
97104
  start_date_recurrence_rule?: string | undefined;
97105
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97105
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97106
97106
  end_date_recurrence_rule?: string | undefined;
97107
97107
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
97108
97108
  time_zone?: string | undefined;
97109
97109
  }[] | undefined) | undefined;
97110
97110
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
97111
97111
  online_time_frame_options?: ({
97112
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
97112
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
97113
97113
  display_name: string;
97114
97114
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
97115
97115
  min_duration?: string | undefined;
97116
97116
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
97117
97117
  max_duration?: string | undefined;
97118
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97118
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97119
97119
  matching_start_end_time?: true | undefined;
97120
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97120
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97121
97121
  time_pairs?: {
97122
- /** Label for the check-in/check-out time pairing. */
97122
+ /** Label for the start/end time pairing. */
97123
97123
  display_name: string;
97124
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97125
- check_in_time: string;
97126
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
97127
- check_out_time: string;
97124
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97125
+ start_time: string;
97126
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
97127
+ end_time: string;
97128
97128
  }[] | undefined;
97129
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97129
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97130
97130
  start_date_recurrence_rule?: string | undefined;
97131
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97131
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97132
97132
  end_date_recurrence_rule?: string | undefined;
97133
97133
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
97134
97134
  time_zone?: string | undefined;
@@ -106242,52 +106242,52 @@ export type Routes = {
106242
106242
  supported_code_lengths?: (number[] | undefined) | undefined;
106243
106243
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
106244
106244
  offline_time_frame_options?: ({
106245
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
106245
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
106246
106246
  display_name: string;
106247
106247
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
106248
106248
  min_duration?: string | undefined;
106249
106249
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
106250
106250
  max_duration?: string | undefined;
106251
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106251
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106252
106252
  matching_start_end_time?: true | undefined;
106253
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106253
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106254
106254
  time_pairs?: {
106255
- /** Label for the check-in/check-out time pairing. */
106255
+ /** Label for the start/end time pairing. */
106256
106256
  display_name: string;
106257
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106258
- check_in_time: string;
106259
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
106260
- check_out_time: string;
106257
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106258
+ start_time: string;
106259
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
106260
+ end_time: string;
106261
106261
  }[] | undefined;
106262
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106262
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106263
106263
  start_date_recurrence_rule?: string | undefined;
106264
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106264
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106265
106265
  end_date_recurrence_rule?: string | undefined;
106266
106266
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
106267
106267
  time_zone?: string | undefined;
106268
106268
  }[] | undefined) | undefined;
106269
106269
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
106270
106270
  online_time_frame_options?: ({
106271
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
106271
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
106272
106272
  display_name: string;
106273
106273
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
106274
106274
  min_duration?: string | undefined;
106275
106275
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
106276
106276
  max_duration?: string | undefined;
106277
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106277
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106278
106278
  matching_start_end_time?: true | undefined;
106279
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106279
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106280
106280
  time_pairs?: {
106281
- /** Label for the check-in/check-out time pairing. */
106281
+ /** Label for the start/end time pairing. */
106282
106282
  display_name: string;
106283
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106284
- check_in_time: string;
106285
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
106286
- check_out_time: string;
106283
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106284
+ start_time: string;
106285
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
106286
+ end_time: string;
106287
106287
  }[] | undefined;
106288
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106288
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106289
106289
  start_date_recurrence_rule?: string | undefined;
106290
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106290
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106291
106291
  end_date_recurrence_rule?: string | undefined;
106292
106292
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
106293
106293
  time_zone?: string | undefined;
@@ -107687,52 +107687,52 @@ export type Routes = {
107687
107687
  supported_code_lengths?: (number[] | undefined) | undefined;
107688
107688
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
107689
107689
  offline_time_frame_options?: ({
107690
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
107690
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
107691
107691
  display_name: string;
107692
107692
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
107693
107693
  min_duration?: string | undefined;
107694
107694
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
107695
107695
  max_duration?: string | undefined;
107696
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107696
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107697
107697
  matching_start_end_time?: true | undefined;
107698
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107698
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107699
107699
  time_pairs?: {
107700
- /** Label for the check-in/check-out time pairing. */
107700
+ /** Label for the start/end time pairing. */
107701
107701
  display_name: string;
107702
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107703
- check_in_time: string;
107704
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
107705
- check_out_time: string;
107702
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107703
+ start_time: string;
107704
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
107705
+ end_time: string;
107706
107706
  }[] | undefined;
107707
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107707
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107708
107708
  start_date_recurrence_rule?: string | undefined;
107709
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107709
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107710
107710
  end_date_recurrence_rule?: string | undefined;
107711
107711
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
107712
107712
  time_zone?: string | undefined;
107713
107713
  }[] | undefined) | undefined;
107714
107714
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
107715
107715
  online_time_frame_options?: ({
107716
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
107716
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
107717
107717
  display_name: string;
107718
107718
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
107719
107719
  min_duration?: string | undefined;
107720
107720
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
107721
107721
  max_duration?: string | undefined;
107722
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107722
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107723
107723
  matching_start_end_time?: true | undefined;
107724
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107724
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107725
107725
  time_pairs?: {
107726
- /** Label for the check-in/check-out time pairing. */
107726
+ /** Label for the start/end time pairing. */
107727
107727
  display_name: string;
107728
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107729
- check_in_time: string;
107730
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
107731
- check_out_time: string;
107728
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107729
+ start_time: string;
107730
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
107731
+ end_time: string;
107732
107732
  }[] | undefined;
107733
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107733
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107734
107734
  start_date_recurrence_rule?: string | undefined;
107735
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107735
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107736
107736
  end_date_recurrence_rule?: string | undefined;
107737
107737
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
107738
107738
  time_zone?: string | undefined;
@@ -110387,52 +110387,52 @@ export type Routes = {
110387
110387
  supported_code_lengths?: (number[] | undefined) | undefined;
110388
110388
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
110389
110389
  offline_time_frame_options?: ({
110390
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
110390
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
110391
110391
  display_name: string;
110392
110392
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
110393
110393
  min_duration?: string | undefined;
110394
110394
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
110395
110395
  max_duration?: string | undefined;
110396
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110396
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110397
110397
  matching_start_end_time?: true | undefined;
110398
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110398
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110399
110399
  time_pairs?: {
110400
- /** Label for the check-in/check-out time pairing. */
110400
+ /** Label for the start/end time pairing. */
110401
110401
  display_name: string;
110402
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110403
- check_in_time: string;
110404
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
110405
- check_out_time: string;
110402
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110403
+ start_time: string;
110404
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
110405
+ end_time: string;
110406
110406
  }[] | undefined;
110407
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110407
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110408
110408
  start_date_recurrence_rule?: string | undefined;
110409
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110409
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110410
110410
  end_date_recurrence_rule?: string | undefined;
110411
110411
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
110412
110412
  time_zone?: string | undefined;
110413
110413
  }[] | undefined) | undefined;
110414
110414
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
110415
110415
  online_time_frame_options?: ({
110416
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
110416
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
110417
110417
  display_name: string;
110418
110418
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
110419
110419
  min_duration?: string | undefined;
110420
110420
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
110421
110421
  max_duration?: string | undefined;
110422
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110422
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110423
110423
  matching_start_end_time?: true | undefined;
110424
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110424
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110425
110425
  time_pairs?: {
110426
- /** Label for the check-in/check-out time pairing. */
110426
+ /** Label for the start/end time pairing. */
110427
110427
  display_name: string;
110428
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110429
- check_in_time: string;
110430
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
110431
- check_out_time: string;
110428
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110429
+ start_time: string;
110430
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
110431
+ end_time: string;
110432
110432
  }[] | undefined;
110433
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110433
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110434
110434
  start_date_recurrence_rule?: string | undefined;
110435
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110435
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110436
110436
  end_date_recurrence_rule?: string | undefined;
110437
110437
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
110438
110438
  time_zone?: string | undefined;