From 1617910988640937c57a1fee38dec8cb385104fa Mon Sep 17 00:00:00 2001 From: TekuSP Date: Fri, 18 Oct 2024 15:30:00 +0200 Subject: [PATCH] fix: Make boolean nullable --- ShopifySharp/Entities/TaxLine.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShopifySharp/Entities/TaxLine.cs b/ShopifySharp/Entities/TaxLine.cs index 6615cba6..7424523b 100644 --- a/ShopifySharp/Entities/TaxLine.cs +++ b/ShopifySharp/Entities/TaxLine.cs @@ -8,7 +8,7 @@ public class TaxLine /// Whether the channel that submitted the tax line is responsible for remitting it. /// [JsonProperty("channelLiable")] - public bool ChannelLiable { get; set; } + public bool? ChannelLiable { get; set; } /// /// The amount of tax to be charged.