26 lines
462 B
TypeScript
26 lines
462 B
TypeScript
|
|
/**
|
||
|
|
* Generated by orval v8.5.3 🍺
|
||
|
|
* Do not edit manually.
|
||
|
|
* Reading Platform API
|
||
|
|
* Reading Platform Backend Service API Documentation
|
||
|
|
* OpenAPI spec version: 1.0.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Login Response
|
||
|
|
*/
|
||
|
|
export interface LoginResponse {
|
||
|
|
/** JWT Token */
|
||
|
|
token?: string;
|
||
|
|
/** User ID */
|
||
|
|
userId?: number;
|
||
|
|
/** Username */
|
||
|
|
username?: string;
|
||
|
|
/** User name */
|
||
|
|
name?: string;
|
||
|
|
/** User role */
|
||
|
|
role?: string;
|
||
|
|
/** Tenant ID */
|
||
|
|
tenantId?: number;
|
||
|
|
}
|