UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

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