Skip to main content

Sector

Represents a travel sector.

type Sector {
arrivalDate: LocalDate
arrivalPort: Port!
arrivalTerminal: String
bookingReference: String
carrier: Carrier
class: String
comment: String
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
departureDate: LocalDate
departurePort: Port!
departureTerminal: String
eta: LocalTime
etd: LocalTime
fees: [TravelFee!]!
flightNumber: String
id: ID!
inventory: Inventory!
itinerary: String
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
paymentStatuses: [PaymentStatus!]!
travelType: TravelType!
uniqueCode: String
}

Fields

Sector.arrivalDate ● LocalDate scalar

The arrival date of the sector. Optional.

Sector.arrivalPort ● Port! non-null object

The arrival port of the sector.

Sector.arrivalTerminal ● String scalar

The arrival terminal of the sector. Optional.

Sector.bookingReference ● String scalar

The booking reference for the sector. Optional.

Sector.carrier ● Carrier object

The carrier of the sector. Optional.

Sector.class ● String scalar

The class of the sector. Optional.

Sector.comment ● String scalar

A UTF-8 string comment for the sector. Optional.

Sector.createdAt ● DateTime! non-null scalar

The date and time the record was created.

Sector.createdBy ● String scalar

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

Sector.customFields ● [CustomField!]! non-null object

A list of custom field values associated with this travel sector.

CustomFields and CustomFieldDefinitions can be matched through the definitionId and id fields, respectively.

See CustomFieldSearchFilterInput for details on how the optional input argument can be used to filter custom fields.

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).
Sector.customFields.input ● CustomFieldSearchFilterInput! non-null input
Sector.customFields.limit ● PaginationLimit! non-null scalar
Sector.customFields.offset ● NonNegativeInt! non-null scalar

Sector.departureDate ● LocalDate scalar

The departure date of the sector. Optional.

Sector.departurePort ● Port! non-null object

The departure port of the sector.

Sector.departureTerminal ● String scalar

The departure terminal of the sector. Optional.

Sector.eta ● LocalTime scalar

The estimated arrival time of the sector in a 24 hours format. Optional.

Sector.etd ● LocalTime scalar

The estimated departure time of the sector in a 24 hours format. Optional.

Sector.fees ● [TravelFee!]! non-null object

The travel fees charged for this sector.

Rules:

  • Each item in the collection represents the fee for a specific currency.
  • If there is no charge, the collection will contain a single item that has an amount of zero.
  • Only enabled fees will be returned.

Sector.flightNumber ● String scalar

The flight number of the sector. Optional.

Sector.id ● ID! non-null scalar

The unique identifier for a sector.

Sector.inventory ● Inventory! non-null object

The inventory for this sector.

Sector.itinerary ● String scalar

The itinerary for the sector. Optional.

Sector.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

Sector.lastModifiedBy ● String scalar

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

Sector.name ● String! non-null scalar

A UTF-8 string representing the name of the sector.

Sector.paymentStatuses ● [PaymentStatus!]! non-null enum

A list of valid payment statuses for this sector.

Sector.travelType ● TravelType! non-null object

The travel type that was selected for the sector.

Sector.uniqueCode ● String scalar

A customer supplied, UTF-8 string value that represents a unique code for the sector. Optional.

The value must be unique across all sectors.

Member Of

TravelBooking object ● TravelSetup object