UNPKG

cecon-interfaces

Version:
14 lines (13 loc) 352 B
import { EFirebankWithdrawStatus } from '../../enums'; export interface IFirebankWithdrawRecipient { pixKey: string; name: string; } export interface IFirebankWithdraw { transferId: string; externalId: string; status: EFirebankWithdrawStatus; amount: number; recipient: IFirebankWithdrawRecipient; created_at: string; }