/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Holds a session token used for short-term authentication with Synapse * @export * @interface LoginResponse */ export interface LoginResponse { /** * (deprecated) A token that identifies the user * @type {string} * @memberof LoginResponse */ sessionToken?: string; /** * A token that authorizes subsequent requests * @type {string} * @memberof LoginResponse */ accessToken?: string; /** * Does the user accept the terms of use? * @type {boolean} * @memberof LoginResponse */ acceptsTermsOfUse?: boolean; /** * A valid receipt allows the user to skip extra security checks. * @type {string} * @memberof LoginResponse */ authenticationReceipt?: string; } /** * Check if a given object implements the LoginResponse interface. */ export declare function instanceOfLoginResponse(value: object): value is LoginResponse; export declare function LoginResponseFromJSON(json: any): LoginResponse; export declare function LoginResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoginResponse; export declare function LoginResponseToJSON(json: any): LoginResponse; export declare function LoginResponseToJSONTyped(value?: LoginResponse | null, ignoreDiscriminator?: boolean): any;