Skip to content

Commit

Permalink
Merge pull request #787 from jsaxdev/main
Browse files Browse the repository at this point in the history
  • Loading branch information
abuzuhri authored Oct 31, 2024
2 parents 0ed7891 + 3670310 commit 18f8887
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,22 @@ protected FulfillmentAvailability() { }
[DataMember(Name="fulfillment_channel_code", EmitDefaultValue=false)]
public string FulfillmentChannelCode { get; set; }

/// <summary>
/// This property is used like fallback property when property 'FulfillmentChannelCode' is not deserialized by data member name
/// </summary>
private string apiFulfillmentChannelCode;
[DataMember(Name = "fulfillmentChannelCode", EmitDefaultValue = false, IsRequired = false)]
private string ApiFullfilmentChannelCode
{
get => apiFulfillmentChannelCode;
set
{
apiFulfillmentChannelCode = value;
if (string.IsNullOrEmpty(FulfillmentChannelCode))
FulfillmentChannelCode = value;
}
}

/// <summary>
/// The quantity of the item you are making available for sale.
/// </summary>
Expand Down

0 comments on commit 18f8887

Please sign in to comment.