charge.ts 351 B

123456789101112131415161718
  1. // 다날 충전 응답
  2. export type DanalCreateOrderResponse = {
  3. orderID: string;
  4. clientKey: string;
  5. merchantID: string;
  6. amount: number;
  7. pointAmount: number;
  8. vatAmount: number;
  9. successUrl: string;
  10. failUrl: string;
  11. };
  12. export type DanalConfirmResponse = {
  13. success: boolean;
  14. pointAmount: number;
  15. message: string|null;
  16. paidAt: string|null;
  17. };