@transreport/pauk-passenger-api
    Preparing search index...

    Interface SeatPreferenceItem

    Generated by orval v8.4.2 🍺 Do not edit manually. Passenger API

    Passenger API

    The Passenger API provides endpoints for passengers to manage their assisted travel bookings.

    This API allows passengers to:

    • View and manage reservations
    • Set seat preferences and accessibility requirements
    • Track booking status

    All endpoints require authentication via a valid access token.

    OpenAPI spec version: v1

    interface SeatPreferenceItem {
        default?: number | null;
        key: string;
        label?: string;
        maximum?: number | null;
        value?: number | null;
    }
    Index

    Properties

    default?: number | null

    Renamed to value – please use that instead

    key: string

    Unique identifier for the preference item

    label?: string

    Human-readable label for display

    maximum?: number | null

    Maximum value (for numeric input types)

    value?: number | null

    Selected value (for numeric input types)