Skip to content

Commit

Permalink
Merge pull request #92 from Riskified/TIS-543
Browse files Browse the repository at this point in the history
TIS-543
  • Loading branch information
Gering112 authored May 5, 2023
2 parents 69b4d77 + a5e1e5e commit 37b18bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Riskified.SDK/Model/OrderElements/EventTicketLineItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public EventTicketLineItem(
DateTime? deliveredAt = null,
Policy policy = null,
// event ticket specific
Recipient recipient = null,
string section = null,
DateTime? eventDate = null,
string city = null,
Expand All @@ -38,7 +39,7 @@ public EventTicketLineItem(
condition: condition,
requiresShipping: requiresShipping, seller: seller, deliveredTo: deliveredTo, delivered_at: deliveredAt,
category: category, subCategory: subCategory, brand: brand,
productType: OrderElements.ProductType.EventTicket, policy: policy)
productType: OrderElements.ProductType.EventTicket, policy: policy, recipient: recipient)
{
Section = section;
EventDate = eventDate;
Expand Down
3 changes: 2 additions & 1 deletion Riskified.SDK/Model/OrderElements/TravelTicketLineItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public TravelTicketLineItem(
// travel ticket specific
string legId = null,
string departurePortCode = null,
Recipient recipient = null,
string departureCity = null,
string departureCountryCode = null,
string arrivalPortCode = null,
Expand All @@ -48,7 +49,7 @@ public TravelTicketLineItem(
condition: condition,
requiresShipping: requiresShipping, seller: seller, deliveredTo: deliveredTo, delivered_at: deliveredAt,
category: category, subCategory: subCategory, brand: brand,
productType: OrderElements.ProductType.TravelTicket, policy: policy)
productType: OrderElements.ProductType.TravelTicket, policy: policy, recipient: recipient)
{
LegId = legId;
DeparturePortCode = departurePortCode;
Expand Down
4 changes: 2 additions & 2 deletions Riskified.SDK/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("3.4.3")]
[assembly: AssemblyFileVersion("3.4.3")]
[assembly: AssemblyVersion("3.4.4")]
[assembly: AssemblyFileVersion("3.4.4")]

0 comments on commit 37b18bd

Please sign in to comment.