@lomi./sdk
Version:
Official TypeScript SDK for the lomi. API
42 lines • 1.04 kB
TypeScript
/**
* payout methods resource object
*/
export type payout_methods = {
account_name?: string;
account_number?: string;
auto_withdrawal_day?: number;
auto_withdrawal_enabled?: boolean;
auto_withdrawal_last_run?: string;
auto_withdrawal_method?: string;
auto_withdrawal_mobile_provider?: string;
bank_code?: string;
bank_name?: string;
branch_code?: string;
country?: string;
/**
* ISO 8601 datetime
*/
readonly created_at?: string;
is_default?: boolean;
is_spi_enabled?: boolean;
is_uemoa?: boolean;
is_valid?: boolean;
/**
* Unique identifier (UUID format)
*/
organization_id?: string;
/**
* Unique identifier (UUID format)
*/
payout_method_id?: string;
payout_method_type?: string;
spi_account_number?: string;
spi_alias_mbno?: string;
spi_alias_shid?: string;
spi_alias_type?: string;
/**
* ISO 8601 datetime
*/
readonly updated_at?: string;
};
//# sourceMappingURL=payout_methods.d.ts.map