Skip to content

Commit

Permalink
Changes generated by f3a07466c6e9519d8cea161884d63899d894dd1a
Browse files Browse the repository at this point in the history
This commit was automatically created from gocardless/gocardless-dotnet-template@f3a0746
by the `push-files` action.

Workflow run: https://github.com/gocardless/gocardless-dotnet-template/actions/runs/11347988169
  • Loading branch information
gocardless-ci-robot[bot] committed Oct 15, 2024
1 parent c1d4d25 commit 24c774a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions GoCardless/Resources/BillingRequestFlow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,14 @@ public class BillingRequestFlow
/// </summary>
[JsonProperty("show_success_redirect_button")]
public bool? ShowSuccessRedirectButton { get; set; }

/// <summary>
/// If true, the payer will not be redirected to the success screen
/// after completing the flow. A redirect_uri needs to be provided for
/// this parameter to be taken into account.
/// </summary>
[JsonProperty("skip_success_screen")]
public bool? SkipSuccessScreen { get; set; }
}

/// <summary>
Expand Down
8 changes: 8 additions & 0 deletions GoCardless/Services/BillingRequestFlowService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,14 @@ public class BillingRequestFlowPrefilledCustomer
/// </summary>
[JsonProperty("show_success_redirect_button")]
public bool? ShowSuccessRedirectButton { get; set; }

/// <summary>
/// If true, the payer will not be redirected to the success screen
/// after completing the flow. A redirect_uri needs to be provided for
/// this parameter to be taken into account.
/// </summary>
[JsonProperty("skip_success_screen")]
public bool? SkipSuccessScreen { get; set; }
}


Expand Down

0 comments on commit 24c774a

Please sign in to comment.