Skip to content

Commit

Permalink
Changes generated by 35ad50afe05ebee3d418c65a919190ccc202ac1a
Browse files Browse the repository at this point in the history
  • Loading branch information
gocardless-robot committed Feb 7, 2023
1 parent 8b78ef4 commit 6513ec5
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions GoCardless/Resources/BankAuthorisation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,20 @@ public class BankAuthorisation
/// <summary>
/// URL that the payer can be redirected to after authorising the
/// payment.
///
/// On completion of bank authorisation, the query parameter of either
/// `outcome=success` or `outcome=failure` will be
/// appended to the `redirect_uri` to indicate the result of the bank
/// authorisation. If the bank authorisation is
/// expired, the query parameter `outcome=timeout` will be appended to
/// the `redirect_uri`, in which case you should
/// prompt the user to try the bank authorisation step again.
///
/// The `redirect_uri` you provide should handle the `outcome` query
/// parameter for displaying the result of the
/// bank authorisation as outlined above.
///
/// Defaults to `https://pay.gocardless.com/billing/static/thankyou`.
/// </summary>
[JsonProperty("redirect_uri")]
public string RedirectUri { get; set; }
Expand Down
14 changes: 14 additions & 0 deletions GoCardless/Services/BankAuthorisationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,20 @@ public class BankAuthorisationLinks
/// <summary>
/// URL that the payer can be redirected to after authorising the
/// payment.
///
/// On completion of bank authorisation, the query parameter of either
/// `outcome=success` or `outcome=failure` will be
/// appended to the `redirect_uri` to indicate the result of the bank
/// authorisation. If the bank authorisation is
/// expired, the query parameter `outcome=timeout` will be appended to
/// the `redirect_uri`, in which case you should
/// prompt the user to try the bank authorisation step again.
///
/// The `redirect_uri` you provide should handle the `outcome` query
/// parameter for displaying the result of the
/// bank authorisation as outlined above.
///
/// Defaults to `https://pay.gocardless.com/billing/static/thankyou`.
/// </summary>
[JsonProperty("redirect_uri")]
public string RedirectUri { get; set; }
Expand Down

0 comments on commit 6513ec5

Please sign in to comment.