Skip to content

Commit

Permalink
feat: copy travel agent ticket from dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
andrejak committed Oct 7, 2024
1 parent c83324d commit 996474c
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ export type AirlineInitiatedChangeAvailableAction =
| 'change'
| 'update'

export interface TravelAgentTicket {
id: string
external_ticket_id: string
}

type EmptyObject = Record<string, unknown>

export interface AirlineInitiatedChange {
/**
* The action taken in response to this airline-initiated change. Accepted,
Expand Down Expand Up @@ -66,7 +73,7 @@ export interface AirlineInitiatedChange {
* Change. This value will be present for Airline-Initiated changes that take
* some time to be processed.
*/
travel_agent_ticket: any | null
travel_agent_ticket: TravelAgentTicket | EmptyObject | null

/**
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) datetime at which
Expand Down

0 comments on commit 996474c

Please sign in to comment.