/** * mongocamp-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.2.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 { UserProfile } from './UserProfile'; /** * * @export * @interface LoginResult */ export interface LoginResult { /** * * @type {string} * @memberof LoginResult */ authToken: string; /** * * @type {UserProfile} * @memberof LoginResult */ userProfile: UserProfile; /** * * @type {Date} * @memberof LoginResult */ expirationDate: Date; } export declare function LoginResultFromJSON(json: any): LoginResult; export declare function LoginResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoginResult; export declare function LoginResultToJSON(value?: LoginResult | null): any;