/** * 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. */ /** * Request to create a new presigned URL that is used to establish a grid websocket connection. * @export * @interface CreateGridPresignedUrlRequest */ export interface CreateGridPresignedUrlRequest { /** * Identifies the grid session to establish a websocket connection with. * @type {string} * @memberof CreateGridPresignedUrlRequest */ gridSessionId?: string; /** * Identifies the replica that will be establishing the websocket connection. * @type {number} * @memberof CreateGridPresignedUrlRequest */ replicaId?: number; } /** * Check if a given object implements the CreateGridPresignedUrlRequest interface. */ export declare function instanceOfCreateGridPresignedUrlRequest(value: object): value is CreateGridPresignedUrlRequest; export declare function CreateGridPresignedUrlRequestFromJSON(json: any): CreateGridPresignedUrlRequest; export declare function CreateGridPresignedUrlRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateGridPresignedUrlRequest; export declare function CreateGridPresignedUrlRequestToJSON(json: any): CreateGridPresignedUrlRequest; export declare function CreateGridPresignedUrlRequestToJSONTyped(value?: CreateGridPresignedUrlRequest | null, ignoreDiscriminator?: boolean): any;