Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ public Boolean getCustomerDetailsCaptured() {
}

/**
* URL that the payer can be taken to if there isn't a way to progress ahead in flow.
* URL that the payer can be taken to if there isn't a way to progress ahead in flow, for
* example if the customer searches for a bank that doesn't exist or isn't supported on the
* scheme.
*/
public String getExitUri() {
return exitUri;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ public BillingRequestFlowCreateRequest withCustomerDetailsCaptured(
}

/**
* URL that the payer can be taken to if there isn't a way to progress ahead in flow.
* URL that the payer can be taken to if there isn't a way to progress ahead in flow, for
* example if the customer searches for a bank that doesn't exist or isn't supported on the
* scheme.
*/
public BillingRequestFlowCreateRequest withExitUri(String exitUri) {
this.exitUri = exitUri;
Expand Down