@cranberry-money/shared-types
Version:
Shared TypeScript type definitions for Blueberry platform
32 lines • 778 B
TypeScript
import type { CurrencyCode } from './cash';
export interface BankAccount {
uuid: string;
account: string;
bankName: string;
branchName?: string;
accountNumber: string;
bsb: string;
accountName: string;
accountType: string;
currency: CurrencyCode;
swiftCode?: string;
iban?: string;
isVerified: boolean;
verificationDate?: string;
isPrimary: boolean;
isActive: boolean;
notes?: string;
createdAt: string;
updatedAt: string;
}
export interface BankAccountQueryParams {
account?: string;
bank_name?: string;
account_type?: string;
currency?: CurrencyCode;
is_verified?: boolean;
is_primary?: boolean;
is_active?: boolean;
order_by?: string;
}
//# sourceMappingURL=bank.d.ts.map