Skip to content

Commit 120914d

Browse files
committed
fix #220
1 parent 7511bf9 commit 120914d

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

Source/FikaAmazonAPI/AmazonSpApiSDK/Models/Orders/BuyerCustomizedInfoDetail.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ public partial class BuyerCustomizedInfoDetail : IEquatable<BuyerCustomizedInfoD
3131
{
3232
this.CustomizedURL = CustomizedURL;
3333
}
34+
public BuyerCustomizedInfoDetail()
35+
{
36+
this.CustomizedURL = default(string);
37+
}
3438

3539
/// <summary>
3640
/// The location of a zip file containing Amazon Custom data.

Source/FikaAmazonAPI/AmazonSpApiSDK/Models/Orders/BuyerInfo.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ public partial class BuyerInfo : IEquatable<BuyerInfo>, IValidatableObject
2929
this.BuyerTaxInfo = buyerTaxInfo;
3030
this.PurchaseOrderNumber = purchaseOrderNumber;
3131
}
32+
public BuyerInfo()
33+
{
34+
this.BuyerEmail = default(string);
35+
this.BuyerName = default(string);
36+
this.BuyerCounty = default(string);
37+
this.BuyerTaxInfo = default(BuyerTaxInfo);
38+
this.PurchaseOrderNumber = default(string);
39+
}
3240

3341
/// <summary>
3442
/// The anonymized email address of the buyer.

0 commit comments

Comments
 (0)