Skip to content

Commit

Permalink
Merge pull request #1016 from clement911/master
Browse files Browse the repository at this point in the history
Added new fields on Transaction.cs
  • Loading branch information
clement911 committed Feb 12, 2024
2 parents 1cf0d6d + 692333f commit eb1f0ea
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ShopifySharp/Entities/PaymentDetails.cs
Expand Up @@ -30,5 +30,17 @@ public class PaymentDetails

[JsonProperty("credit_card_expiration_year")]
public int? CreditCardExpirationYear { get; set; }

/// <summary>
/// The name of the payment method used by the buyer to complete the order transaction.
/// </summary>
[JsonProperty("payment_method_name")]
public string PaymentMethodName { get; set; }

/// <summary>
/// Details for payment methods that require additional buyer action to complete the order transaction.
/// </summary>
[JsonProperty("buyer_action_info")]
public object BuyerActionInfo { get; set; }
}
}

0 comments on commit eb1f0ea

Please sign in to comment.