UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

20 lines (17 loc) 271 B
/** * Switch organization request data */ export type SwitchOrgRQ = { /** * Target organization id */ organizationId: number; /** * From organization id */ fromOrganizationId?: number; /** * Core system access token */ token: string; };