From e136f12575933b601eebfca6b67bc17d4943a994 Mon Sep 17 00:00:00 2001 From: Rajesh Somavarapu Date: Wed, 25 Sep 2024 23:06:55 -0700 Subject: [PATCH] adding to the complex field --- Sift/Schema/ComplexTypes/booking.json | 3 +++ Sift/Sift.csproj | 2 +- Test/Test.cs | 3 ++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Sift/Schema/ComplexTypes/booking.json b/Sift/Schema/ComplexTypes/booking.json index c601f91..3d3252f 100644 --- a/Sift/Schema/ComplexTypes/booking.json +++ b/Sift/Schema/ComplexTypes/booking.json @@ -25,6 +25,9 @@ "$currency_code": { "type": [ "string", "null" ] }, + "$iata_carrier_code": { + "type": [ "string", "null" ] + }, "$quantity": { "type": [ "integer", "null" ] }, diff --git a/Sift/Sift.csproj b/Sift/Sift.csproj index 082e326..4bc38b5 100644 --- a/Sift/Sift.csproj +++ b/Sift/Sift.csproj @@ -4,7 +4,7 @@ Sift Sift Sift - 1.3.0 + 1.4.0 Release 1.3.0 netstandard2.0 Sift diff --git a/Test/Test.cs b/Test/Test.cs index aea13b1..cc0d342 100644 --- a/Test/Test.cs +++ b/Test/Test.cs @@ -55,6 +55,7 @@ public void TestEventRequest() end_time= 2038412903, price = 49900000, currency_code = "USD", + iata_carrier_code = "AS", quantity = 1, venue_id = "venue-123", event_id = "event-123", @@ -161,7 +162,7 @@ public void TestEventRequest() "\"$session_id\":\"sessionId\",\"$order_id\":\"oid\",\"$user_email\":\"bill@gmail.com\"," + "\"$amount\":1000000000000,\"$currency_code\":\"USD\",\"$billing_address\":{\"$name\":\"gary\",\"$city\":\"san francisco\"}," + "\"$bookings\":[{\"$booking_type\":\"$flight\",\"$title\":\"SFO - LAS, 2 Adults\",\"$start_time\":2038412903," + - "\"$end_time\":2038412903,\"$price\":49900000,\"$currency_code\":\"USD\",\"$quantity\":1,\"$guests\":[{\"$name\":\"John Doe\"," + + "\"$end_time\":2038412903,\"$price\":49900000,\"$currency_code\":\"USD\",\"$iata_carrier_code\":\"AS\",\"$quantity\":1,\"$guests\":[{\"$name\":\"John Doe\"," + "\"$email\":\"jdoe@domain.com\",\"$phone\":\"1-415-555-6040\",\"$loyalty_program\":\"skymiles\",\"$loyalty_program_id\":\"PSOV34DF\"," + "\"$birth_date\":\"1985-01-19\"},{\"$name\":\"John Doe\"}],\"$segments\":[{\"$start_time\":203841290300,\"$end_time\":2038412903," + "\"$vessel_number\":\"LH454\",\"$departure_airport_code\":\"SFO\",\"$arrival_airport_code\":\"LAS\",\"$fare_class\":\"Premium Economy\"," +