We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b2a733 commit 289ef15Copy full SHA for 289ef15
src/transaction/interface.ts
@@ -90,9 +90,11 @@ export interface TransactionInitialized extends Response {
90
}
91
92
export interface Transaction {
93
+ id:number;
94
amount: number;
95
currency: string;
- transaction_date: Date;
96
+ paid_at: Date;
97
+ created_at:Date;
98
status: string;
99
reference: string;
100
domain: string;
@@ -124,7 +126,7 @@ export interface Transaction {
124
126
authorization: Authorization;
125
127
customer: Customer;
128
pin: string;
- required_amount: number;
129
+ requested_amount: number;
130
131
132
export interface GetTransactionResponse extends Response {
0 commit comments