/** * 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 Session */ export interface Session { /** * A token that identifies the user * @type {string} * @memberof Session */ sessionToken?: string; /** * Does the user accept the terms of use? * @type {boolean} * @memberof Session */ acceptsTermsOfUse?: boolean; } /** * Check if a given object implements the Session interface. */ export declare function instanceOfSession(value: object): value is Session; export declare function SessionFromJSON(json: any): Session; export declare function SessionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Session; export declare function SessionToJSON(json: any): Session; export declare function SessionToJSONTyped(value?: Session | null, ignoreDiscriminator?: boolean): any;