Skip to main content

Sector

Represents a travel sector.

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

Fields

Sector.allowOverAllocation ● Boolean! non-null scalar

A flag indicating whether over allocation is allowed for the travel sector.

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.arrivalTimezone ● TimeZone scalar

The time zone in which the arrival date and time are specified. Optional.

Sector.bookingReference ● String scalar

The booking reference for the sector. Optional.

Sector.cancelationTaxes ● [TaxItem!]! non-null object

The list of taxes that apply to a cancelation fee for the travel sector.

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.creditHours ● Float! non-null scalar

The number of credit hours for the travel sector.

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.departureTimezone ● TimeZone scalar

The time zone in which the departure date and time are specified. 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.hideOverAllocationWarning ● Boolean! non-null scalar

A flag indicating whether the over allocation warning is hidden when over allocating in EventsAir for the travel sector.

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.taxes ● [TaxItem!]! non-null object

The collection of taxes that apply to a fee for the travel sector.

Sector.travelType ● TravelType! non-null object

The travel type 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

CreateSectorPayload object ● TravelBooking object ● TravelSetup object ● UpdateSectorPayload object