-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert SEPADirectDebit module classes to Kotlin (#1131)
* Convert SEPADirectDebit module classes to Kotlin * Update CHANGELOG * Chnage CreateMandateResult property mandateType to NonNull * Set SEPADirectDebitInternalTokenizeCallback internal --------- Co-authored-by: Ching-Hsiang Lin <[email protected]>
- Loading branch information
1 parent
17b2d2c
commit 8b158f4
Showing
21 changed files
with
502 additions
and
632 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 0 additions & 40 deletions
40
...ectDebit/src/main/java/com/braintreepayments/api/sepadirectdebit/CreateMandateResult.java
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
...irectDebit/src/main/java/com/braintreepayments/api/sepadirectdebit/CreateMandateResult.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.braintreepayments.api.sepadirectdebit | ||
|
||
data class CreateMandateResult internal constructor( | ||
val approvalUrl: String, | ||
val ibanLastFour: String, | ||
val customerId: String, | ||
val bankReferenceToken: String, | ||
val mandateType: SEPADirectDebitMandateType | ||
) |
145 changes: 0 additions & 145 deletions
145
...rectDebit/src/main/java/com/braintreepayments/api/sepadirectdebit/SEPADirectDebitApi.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.