-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from PaystackOSS/feat-terminal
Chore: Clean up
- Loading branch information
Showing
11 changed files
with
7 additions
and
23 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
1 change: 0 additions & 1 deletion
1
src/doc/guides/terminal-flutter/create-models/paystack-intent-response.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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
// PaystackIntentResponse.kt | ||
data class PaystackIntentResponse ( | ||
val intentKey: String, | ||
|
1 change: 0 additions & 1 deletion
1
src/doc/guides/terminal-flutter/create-models/terminal-response.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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
// TerminalResponse.kt | ||
data class TerminalResponse( | ||
val statusCode: String, | ||
|
1 change: 0 additions & 1 deletion
1
src/doc/guides/terminal-flutter/create-models/transaction-request.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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
// TransactionRequest.kt | ||
data class TransactionRequest( | ||
val amount: Int, | ||
|
1 change: 0 additions & 1 deletion
1
src/doc/guides/terminal-react-native/create-models/paystack-intent-response.java
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
// PaystackIntentResponse.java | ||
public class PaystackIntentResponse { | ||
private final String intentkey; | ||
|
1 change: 0 additions & 1 deletion
1
src/doc/guides/terminal-react-native/create-models/terminal-response.java
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
// TerminalResponse.java | ||
public class TerminalResponse { | ||
private final String statusCode; | ||
|
1 change: 0 additions & 1 deletion
1
src/doc/guides/terminal-react-native/create-models/transaction-request.java
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
// TransactionRequest.java | ||
import java.util.Map; | ||
|
||
|
1 change: 0 additions & 1 deletion
1
src/doc/guides/terminal-react-native/create-models/transaction-response.java
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
// TransactionResponse.java | ||
import com.google.gson.annotations.SerializedName; | ||
|
||
|
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
const onPress = async () => { | ||
PaystackModule.makePayment(3000, transactionReference => { | ||
console.log('transaction ref: ', transactionReference); | ||
|
||
}); | ||
}; |