mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
55 lines
1.0 KiB
TypeScript
55 lines
1.0 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* n.eko REST API
|
|
* Next Gen Renderer.
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { MemberProfile } from './member-profile';
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { SessionState } from './session-state';
|
|
|
|
/**
|
|
*
|
|
* @export
|
|
* @interface SessionData
|
|
*/
|
|
export interface SessionData {
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof SessionData
|
|
*/
|
|
'id'?: string;
|
|
/**
|
|
* Only if cookie authentication is disabled.
|
|
* @type {string}
|
|
* @memberof SessionData
|
|
*/
|
|
'token'?: string;
|
|
/**
|
|
*
|
|
* @type {MemberProfile}
|
|
* @memberof SessionData
|
|
*/
|
|
'profile'?: MemberProfile;
|
|
/**
|
|
*
|
|
* @type {SessionState}
|
|
* @memberof SessionData
|
|
*/
|
|
'state'?: SessionState;
|
|
}
|
|
|