Skip to content

Commit e79644a

Browse files
authored
Merge pull request #377 from nafberger/change-box-count-to-int-type
2 parents 6cb3dfc + 0663bdd commit e79644a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentInbound/PartneredLtlDataInput.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public partial class PartneredLtlDataInput : IEquatable<PartneredLtlDataInput>,
3838
/// <param name="PalletList">PalletList.</param>
3939
/// <param name="TotalWeight">The total weight of the shipment..</param>
4040
/// <param name="SellerDeclaredValue">The declaration of the total value of the inventory in the shipment..</param>
41-
public PartneredLtlDataInput(Contact Contact = default(Contact), UnsignedIntType BoxCount = default(UnsignedIntType), SellerFreightClass? SellerFreightClass = default(SellerFreightClass?), string FreightReadyDate = default(string), PalletList PalletList = default(PalletList), Weight TotalWeight = default(Weight), Amount SellerDeclaredValue = default(Amount))
41+
public PartneredLtlDataInput(Contact Contact = default(Contact), int BoxCount = default(int), SellerFreightClass? SellerFreightClass = default(SellerFreightClass?), string FreightReadyDate = default(string), PalletList PalletList = default(PalletList), Weight TotalWeight = default(Weight), Amount SellerDeclaredValue = default(Amount))
4242
{
4343
this.Contact = Contact;
4444
this.BoxCount = BoxCount;
@@ -61,7 +61,7 @@ public partial class PartneredLtlDataInput : IEquatable<PartneredLtlDataInput>,
6161
/// </summary>
6262
/// <value>The number of boxes in the shipment.</value>
6363
[DataMember(Name = "BoxCount", EmitDefaultValue = false)]
64-
public UnsignedIntType BoxCount { get; set; }
64+
public int BoxCount { get; set; }
6565

6666

6767
/// <summary>

0 commit comments

Comments
 (0)