UNPKG

kotanipay-sdk

Version:

Official Kotani Pay SDK for Node.js and Browser

25 lines 611 B
export interface CreateIntegratorRequest { organization: string; product_name: string; first_name: string; last_name: string; email: string; phone: string; country_code: string; } export interface IntegratorResponse { success: boolean; message: string; id: string; organization: string; product_name: string; first_name: string; last_name: string; email: string; phone: string; country_code: string; status: 'active' | 'inactive' | 'pending'; created_at: string; updated_at: string; } //# sourceMappingURL=integrator.types.d.ts.map