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.
CustomField
s and CustomFieldDefinition
s 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 to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
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.