@bitzonegaming/roleplay-engine-sdk
Version:
Roleplay Engine SDK
32 lines (31 loc) • 533 B
TypeScript
/**
*
* @export
* @interface SessionInfoAccount
*/
export interface SessionInfoAccount {
/**
*
* @type {string}
* @memberof SessionInfoAccount
*/
id: string;
/**
*
* @type {string}
* @memberof SessionInfoAccount
*/
username: string;
/**
*
* @type {Array<string>}
* @memberof SessionInfoAccount
*/
segmentDefinitionIds: Array<string>;
/**
*
* @type {number}
* @memberof SessionInfoAccount
*/
authorizedDate: number;
}