ShopifySharp icon indicating copy to clipboard operation
ShopifySharp copied to clipboard

Order.LineItems.properties missing from LineItem

Open vincejairam opened this issue 6 months ago • 1 comments

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.

vincejairam avatar Aug 07 '24 22:08 vincejairam