| 123456789101112131415161718 |
- // 다날 충전 응답
- export type DanalCreateOrderResponse = {
- orderID: string;
- clientKey: string;
- merchantID: string;
- amount: number;
- pointAmount: number;
- vatAmount: number;
- successUrl: string;
- failUrl: string;
- };
- export type DanalConfirmResponse = {
- success: boolean;
- pointAmount: number;
- message: string|null;
- paidAt: string|null;
- };
|