Skip to content

Commit

Permalink
Add OffSession parameter to PaymentIntent (#1617)
Browse files Browse the repository at this point in the history
  • Loading branch information
danwang-stripe authored and ob-stripe committed May 17, 2019
1 parent 7fdf68a commit 5848477
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ public class PaymentIntentConfirmOptions : BaseOptions
[JsonProperty("invoice_charge_reason")]
public string InvoiceChargeReason { get; set; }

[JsonProperty("off_session")]
public string OffSession { get; set; }

[JsonProperty("payment_method")]
public string PaymentMethodId { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ public class PaymentIntentCreateOptions : PaymentIntentSharedOptions
[JsonProperty("confirmation_method")]
public string ConfirmationMethod { get; set; }

[JsonProperty("off_session")]
public string OffSession { get; set; }

[JsonProperty("return_url")]
public string ReturnUrl { get; set; }

Expand Down

0 comments on commit 5848477

Please sign in to comment.