export type session_SessionPayload = { /** * AppID is the marketplace application that issued the session. */ appId?: string; /** * ClientUserID is the client (external) user associated with the session, if any. */ clientUserId?: string; /** * CompanyID is the company associated with the session, if any. */ companyId?: string; /** * InternalUserID is the internal user associated with the session, if any. */ internalUserId?: string; /** * PortalID is the workspace the session belongs to. */ portalId?: string; };