export type TenantLaunchRequest = { username: string; email: string; firstname?: string; lastname?: string; password?: string; /** * Organization name */ name: string; /** * Unique key for the organization */ key: string; ignore_user_exists?: boolean; /** * Advertising mode allows a platform to set custom usd balance to allocate for its members */ is_advertising?: boolean; };