diff --git a/ShopifySharp/Entities/PaymentDetails.cs b/ShopifySharp/Entities/PaymentDetails.cs index 30d806b9..5d4e1a88 100644 --- a/ShopifySharp/Entities/PaymentDetails.cs +++ b/ShopifySharp/Entities/PaymentDetails.cs @@ -30,5 +30,17 @@ public class PaymentDetails [JsonProperty("credit_card_expiration_year")] public int? CreditCardExpirationYear { get; set; } + + /// + /// The name of the payment method used by the buyer to complete the order transaction. + /// + [JsonProperty("payment_method_name")] + public string PaymentMethodName { get; set; } + + /// + /// Details for payment methods that require additional buyer action to complete the order transaction. + /// + [JsonProperty("buyer_action_info")] + public object BuyerActionInfo { get; set; } } }