UNPKG

@bitzonegaming/roleplay-engine-sdk

Version:
14 lines (13 loc) 290 B
/** * * @export * @interface AuthorizeSessionRequest */ export interface AuthorizeSessionRequest { /** * Access token of the user. It is required to authorize the session. * @type {string} * @memberof AuthorizeSessionRequest */ accessToken: string | null; }