using System.Text.Json.Serialization;
namespace IOL.VippsEcommerce.Models.Api
{
public class TAdditionalTransactionData
{
///
/// Passenger name, initials, and a title.
///
/// Passenger name, initials, and a title.
[JsonPropertyName("passengerName")]
public string PassengerName { get; set; }
///
/// IATA 3-digit accounting code (PAX); numeric. It identifies the carrier. eg KLM = 074
///
/// IATA 3-digit accounting code (PAX); numeric. It identifies the carrier. eg KLM = 074
[JsonPropertyName("airlineCode")]
public string AirlineCode { get; set; }
///
/// IATA 2-letter accounting code (PAX); alphabetical. It identifies the carrier. Eg KLM = KL
///
/// IATA 2-letter accounting code (PAX); alphabetical. It identifies the carrier. Eg KLM = KL
[JsonPropertyName("airlineDesignatorCode")]
public string AirlineDesignatorCode { get; set; }
///
/// The ticket's unique identifier.
///
/// The ticket's unique identifier.
[JsonPropertyName("ticketNumber")]
public string TicketNumber { get; set; }
///
/// Reference number for the invoice, issued by the agency.
///
/// Reference number for the invoice, issued by the agency.
[JsonPropertyName("agencyInvoiceNumber")]
public string AgencyInvoiceNumber { get; set; }
}
}