diff --git a/Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentOutbound/Currency.cs b/Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentOutbound/Currency.cs index 17b7f45a..d2e56869 100644 --- a/Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentOutbound/Currency.cs +++ b/Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentOutbound/Currency.cs @@ -60,14 +60,16 @@ public Currency() { } /// Three-digit currency code in ISO 4217 format. /// /// Three-digit currency code in ISO 4217 format. - [DataMember(Name = "CurrencyCode", EmitDefaultValue = false)] + [DataMember(Name = "currencyCode", EmitDefaultValue = false)] + [JsonProperty(PropertyName = "currencyCode")] public string CurrencyCode { get; set; } /// /// The currency amount. /// /// The currency amount. - [DataMember(Name = "Value", EmitDefaultValue = false)] + [DataMember(Name = "value", EmitDefaultValue = false)] + [JsonProperty(PropertyName = "value")] public string Value { get; set; } ///