update payment
This commit is contained in:
@@ -4,3 +4,17 @@ export enum PaymentStatus {
|
||||
Failed = 'failed',
|
||||
}
|
||||
|
||||
export interface IPaymentRequest {
|
||||
amount: number;
|
||||
callbackUrl: string;
|
||||
merchantId: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export interface IPaymentResponse {
|
||||
code: number;
|
||||
message: string;
|
||||
authority: string;
|
||||
fee_type: string;
|
||||
fee: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user