@squadco/js
Version:
Simplify the integration process with Squad's comprehensive payment solutions using the Squad JavaScript SDK.
17 lines (16 loc) • 396 B
TypeScript
import type { BaseResponseProps } from "./base-response";
export interface SubMerchantProps {
displayName: string;
accountName: string;
accountNumber: string;
bankCode: string;
bankName: string;
}
export interface SubMerchantResponseProps extends BaseResponseProps {
status: number;
success: true;
message: string;
data: {
account_id: string;
};
}