blob: 692c7bec4740d78f8b9535d31a1b3caa56d91a6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
using System.Text.Json.Serialization;
namespace IOL.VippsEcommerce.Models.Api
{
public class TAdditionalTransactionData
{
/// <summary>
/// Passenger name, initials, and a title.
/// </summary>
/// <value>Passenger name, initials, and a title.</value>
[JsonPropertyName("passengerName")]
public string PassengerName { get; set; }
/// <summary>
/// IATA 3-digit accounting code (PAX); numeric. It identifies the carrier. eg KLM = 074
/// </summary>
/// <value>IATA 3-digit accounting code (PAX); numeric. It identifies the carrier. eg KLM = 074</value>
[JsonPropertyName("airlineCode")]
public string AirlineCode { get; set; }
/// <summary>
/// IATA 2-letter accounting code (PAX); alphabetical. It identifies the carrier. Eg KLM = KL
/// </summary>
/// <value>IATA 2-letter accounting code (PAX); alphabetical. It identifies the carrier. Eg KLM = KL</value>
[JsonPropertyName("airlineDesignatorCode")]
public string AirlineDesignatorCode { get; set; }
/// <summary>
/// The ticket's unique identifier.
/// </summary>
/// <value>The ticket's unique identifier.</value>
[JsonPropertyName("ticketNumber")]
public string TicketNumber { get; set; }
/// <summary>
/// Reference number for the invoice, issued by the agency.
/// </summary>
/// <value>Reference number for the invoice, issued by the agency.</value>
[JsonPropertyName("agencyInvoiceNumber")]
public string AgencyInvoiceNumber { get; set; }
}
}
|