Skip to content

Commit

Permalink
Merge branch 'main' into paypal-app-switch-feature
Browse files Browse the repository at this point in the history
  • Loading branch information
richherrera committed Sep 26, 2024
2 parents f18fe78 + 8412ead commit cb23f2f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sealed class LocalPaymentPendingRequest {
* @property pendingRequestString - This String should be stored and passed to
* [LocalPaymentLauncher.handleReturnToApp].
*/
class Started internal constructor(val pendingRequestString: String) : LocalPaymentPendingRequest()
class Started(val pendingRequestString: String) : LocalPaymentPendingRequest()

/**
* An error occurred launching the local payment browser flow. See [error] for details.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sealed class PayPalPendingRequest {
* @property pendingRequestString - This String should be stored and passed to
* [PayPalLauncher.handleReturnToApp].
*/
class Started internal constructor(
class Started(
val pendingRequestString: String
) : PayPalPendingRequest()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sealed class SEPADirectDebitPendingRequest {
* @property pendingRequestString - This String should be stored and passed to
* [SEPADirectDebitLauncher.handleReturnToApp].
*/
class Started internal constructor(val pendingRequestString: String) : SEPADirectDebitPendingRequest()
class Started(val pendingRequestString: String) : SEPADirectDebitPendingRequest()

/**
* An error occurred launching the SEPA Direct Debit browser flow. See [error] for details.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sealed class VenmoPendingRequest {
* @property pendingRequestString - This String should be stored and passed to
* [VenmoLauncher.handleReturnToApp].
*/
class Started internal constructor(val pendingRequestString: String) : VenmoPendingRequest()
class Started(val pendingRequestString: String) : VenmoPendingRequest()

/**
* An error occurred launching the Venmo flow. See [error] for details.
Expand Down

0 comments on commit cb23f2f

Please sign in to comment.