/** * 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. */ /** * Connection information from a presigned URL. * @export * @interface Connection */ export interface Connection { /** * The unique sessionId that identifies the grid session. * @type {number} * @memberof Connection */ gridSessionId?: number; /** * The replica ID of the client connection. * @type {number} * @memberof Connection */ replicaId?: number; /** * The ID of the user that establilshed this connection. * @type {number} * @memberof Connection */ userId?: number; } /** * Check if a given object implements the Connection interface. */ export declare function instanceOfConnection(value: object): value is Connection; export declare function ConnectionFromJSON(json: any): Connection; export declare function ConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Connection; export declare function ConnectionToJSON(json: any): Connection; export declare function ConnectionToJSONTyped(value?: Connection | null, ignoreDiscriminator?: boolean): any;