Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BoardingAndSeatingInfo

import type { BoardingAndSeatingInfo } from "https://googleapis.deno.dev/v1/walletobjects:v1.ts";
interface BoardingAndSeatingInfo {
boardingDoor?:
| "BOARDING_DOOR_UNSPECIFIED"
| "FRONT"
| "front"
| "BACK"
| "back";
boardingGroup?: string;
boardingPosition?: string;
boardingPrivilegeImage?: Image;
kind?: string;
seatAssignment?: LocalizedString;
seatClass?: string;
seatNumber?: string;
sequenceNumber?: string;
}

§Properties

§
boardingDoor?: "BOARDING_DOOR_UNSPECIFIED" | "FRONT" | "front" | "BACK" | "back"
[src]

Set this field only if this flight boards through more than one door or bridge and you want to explicitly print the door location on the boarding pass. Most airlines route their passengers to the right door or bridge by refering to doors/bridges by the seatClass. In those cases boardingDoor should not be set.

§
boardingGroup?: string
[src]

The value of boarding group (or zone) this passenger shall board with. eg: "B" The label for this value will be determined by the boardingPolicy field in the flightClass referenced by this object.

§
boardingPosition?: string
[src]

The value of boarding position. eg: "76"

§
boardingPrivilegeImage?: Image
[src]

A small image shown above the boarding barcode. Airlines can use it to communicate any special boarding privileges. In the event the security program logo is also set, this image might be rendered alongside the logo for that security program.

§
kind?: string
[src]

Identifies what kind of resource this is. Value: the fixed string "walletobjects#boardingAndSeatingInfo".

§
seatAssignment?: LocalizedString
[src]

The passenger's seat assignment. To be used when there is no specific identifier to use in seatNumber. eg: "assigned at gate"

§
seatClass?: string
[src]

The value of the seat class. eg: "Economy" or "Economy Plus"

§
seatNumber?: string
[src]

The value of passenger seat. If there is no specific identifier, use seatAssignment instead. eg: "25A"

§
sequenceNumber?: string
[src]

The sequence number on the boarding pass. This usually matches the sequence in which the passengers checked in. Airline might use the number for manual boarding and bag tags. eg: "49"