account.ts 291 B

1234567891011121314
  1. export interface SettlementAccountResponse {
  2. accounts: SettlementAccountItem[];
  3. }
  4. export interface SettlementAccountItem {
  5. id: number;
  6. bankCode: string;
  7. bankName: string;
  8. accountNumber: string;
  9. accountHolder: string;
  10. isVerified: boolean;
  11. registeredAt: string;
  12. updatedAt: string;
  13. }