mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-01 07:49:53 +02:00
add openapi.
This commit is contained in:
parent
b5f16a24eb
commit
17be646493
31 changed files with 4078 additions and 0 deletions
50
src/component/api/models/session-data.ts
Normal file
50
src/component/api/models/session-data.ts
Normal file
|
@ -0,0 +1,50 @@
|
|||
/* 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.
|
||||
*/
|
||||
|
||||
|
||||
import { MemberProfile } from './member-profile';
|
||||
import { 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;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue