nozzlegear / ShopifySharp

ShopifySharp is a .NET library that helps developers easily authenticate with and manage Shopify stores.
https://nozzlegear.com/shopify-development-handbook
MIT License
742 stars 309 forks source link

Order.LineItems.properties missing from LineItem #1088

Open vincejairam opened 1 month ago

vincejairam commented 1 month ago

I don't see the properties [JsonProperty("properties")] as part of the LineItem class. It seems to be missing. I added the following

    [JsonProperty("properties")]
    public IEnumerable<NoteAttribute> LineProperties
    {
        get;
        set;
    }

to get those properties for additional instructions that the customer is requesting for the item in the store.

nozzlegear commented 1 month ago

Good catch! I just got back from vacation and plan to do a bunch of work on ShopifySharp in the next couple of days, I'll make sure this gets in there.