Skip to content

Commit

Permalink
Update array to IEnumerable
Browse files Browse the repository at this point in the history
  • Loading branch information
David Sargent authored and nozzlegear committed Mar 20, 2024
1 parent 741dbd8 commit 8c37eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ShopifySharp/Entities/ShopifyPaymentsDisputeEvidence.cs
Expand Up @@ -64,6 +64,6 @@ public class ShopifyPaymentsDisputeEvidence : ShopifyObject
public ShopifyPaymentsDisputeEvidenceAddress BillingAddress { get; set; }

[JsonProperty("fulfillments")]
public ShopifyPaymentsDisputeEvidenceFulfillment[] Fulfillments { get; set; }
public IEnumerable<ShopifyPaymentsDisputeEvidenceFulfillment> Fulfillments { get; set; }
}
}

0 comments on commit 8c37eca

Please sign in to comment.