/** * 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. */ /** * Response to create a grid presigned URL. * @export * @interface CreateGridPresignedUrlResponse */ export interface CreateGridPresignedUrlResponse { /** * A presigned URL used to establish a websocket connection to the grid session. * @type {string} * @memberof CreateGridPresignedUrlResponse */ presignedUrl?: string; } /** * Check if a given object implements the CreateGridPresignedUrlResponse interface. */ export declare function instanceOfCreateGridPresignedUrlResponse(value: object): value is CreateGridPresignedUrlResponse; export declare function CreateGridPresignedUrlResponseFromJSON(json: any): CreateGridPresignedUrlResponse; export declare function CreateGridPresignedUrlResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateGridPresignedUrlResponse; export declare function CreateGridPresignedUrlResponseToJSON(json: any): CreateGridPresignedUrlResponse; export declare function CreateGridPresignedUrlResponseToJSONTyped(value?: CreateGridPresignedUrlResponse | null, ignoreDiscriminator?: boolean): any;