Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mludowise-stripe committed Oct 18, 2024
1 parent 0539bc3 commit 4cc7ed6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
/// Indicates to open the FinancialConnections flow
class OpenFinancialConnections: ScriptMessageHandler<OpenFinancialConnections.Payload> {
struct Payload: Codable, Equatable {
/// The Financial Connections Session client secret used to open the FinancialConnectionsSheet
let clientSecret: String
/// Unique identifier that is included in the `returnedFromFinancialConnections` message
/// Unique identifier (UUID) returned to the web view with the FinancialConnections
/// result in `returnedFromFinancialConnections` message
let id: String
}
init(didReceiveMessage: @escaping (Payload) -> Void) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ struct ReturnedFromFinancialConnections: MessageSender {
/// The linked bank account token.
/// This value will be nil if the user canceled the flow or an error occurred.
let bankToken: String?
/// Unique identifier that is included in the `openFinancialConnections` message
/// Unique identifier (UUID) originally passed from the web layer in `openFinancialConnections`
let id: String
}
let name: String = "returnedFromFinancialConnections"
Expand Down

0 comments on commit 4cc7ed6

Please sign in to comment.