/* tslint:disable */
/* eslint-disable */
/**
 * 登录授权接口
 * 授权相关
 *
 * OpenAPI spec version: 1.0.0
 * Contact: zofnou@126.com
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */
import { LoginUserOutput } from './login-user-output';
/**
 * 全局返回结果
 * @export
 * @interface AdminResultLoginUserOutput
 */
export interface AdminResultLoginUserOutput {
    /**
     * 状态码
     * @type {number}
     * @memberof AdminResultLoginUserOutput
     */
    code?: number;
    /**
     * 类型success、warning、error
     * @type {string}
     * @memberof AdminResultLoginUserOutput
     */
    type?: string | null;
    /**
     * 错误信息
     * @type {string}
     * @memberof AdminResultLoginUserOutput
     */
    message?: string | null;
    /**
     * 
     * @type {LoginUserOutput}
     * @memberof AdminResultLoginUserOutput
     */
    result?: LoginUserOutput;
    /**
     * 附加数据
     * @type {any}
     * @memberof AdminResultLoginUserOutput
     */
    extras?: any | null;
    /**
     * 时间
     * @type {Date}
     * @memberof AdminResultLoginUserOutput
     */
    time?: Date;
}
