Skip to main content

TravelPreferences

The configuration preferences for travel.

type TravelPreferences {
allowManualOverAllocation: Boolean!
cancelationPolicy: CancelationPolicy!
createdAt: DateTime!
createdBy: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
localPorts(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Port!]!
paymentPolicy: PaymentPolicy!
timeZoneEnabled: Boolean!
}

Fields

TravelPreferences.allowManualOverAllocation ● Boolean! non-null scalar

A flag indicating whether EventsAir users are allowed to manually over allocate inventory.

TravelPreferences.cancelationPolicy ● CancelationPolicy! non-null object

The cancelation policy for travel.

TravelPreferences.createdAt ● DateTime! non-null scalar

The date and time the record was created.

TravelPreferences.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

TravelPreferences.id ● ID! non-null scalar

The unique identifier of the travel preferences.

TravelPreferences.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

TravelPreferences.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

TravelPreferences.localPorts ● [Port!]! non-null object

A list of local ports associated with the travel preferences.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
TravelPreferences.localPorts.limit ● PaginationLimit! non-null scalar
TravelPreferences.localPorts.offset ● NonNegativeInt! non-null scalar

TravelPreferences.paymentPolicy ● PaymentPolicy! non-null object

The payment policy for travel.

TravelPreferences.timeZoneEnabled ● Boolean! non-null scalar

A flag indicating whether the recording of the departure and arrival time zone is enabled.

Member Of

TravelSetup object ● UpdateTravelPreferencesPayload object