export interface LoopSessionSharePayload { /** * The identity of the LoopSession object to share * * @type {string} * @memberOf LoopSessionSharePayload */ session: string; /** * The identities of users to share the session with * * @type {string[]} * @memberOf LoopSessionSharePayload */ users: string[]; }