Carrier
Represents a carrier that is used in sectors and travel bookings.
type Carrier {
createdAt: DateTime!
createdBy: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
number: String
uniqueCode: String
}
Fields
Carrier.createdAt ● DateTime! non-null scalar
The date and time the record was created.
Carrier.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
Carrier.id ● ID! non-null scalar
The unique identifier for a carrier.
Carrier.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
Carrier.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
Carrier.name ● String! non-null scalar
A UTF-8 string representing the name of the carrier.
Carrier.number ● String scalar
A UTF-8 string representing the number of the carrier. Optional.
Carrier.uniqueCode ● String scalar
A customer supplied, UTF-8 string value that represents a unique code for the carrier. Optional.
The value must be unique across all carriers globally.
Returned By
carriers query
Member Of
Sector object ● TravelBooking object ● TravelPassenger object