@lomi./sdk
Version:
Official Node.js SDK for the lomi. API
13 lines (12 loc) • 369 B
TypeScript
import type { ProviderCode } from './ProviderCode';
export type OrganizationProviderSettings = {
organization_id: string;
provider_code: ProviderCode;
provider_merchant_id?: string;
is_connected: boolean;
phone_number?: string;
is_phone_verified: boolean;
metadata?: Record<string, any>;
created_at?: string;
updated_at?: string;
};