/** * 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 list a user's active grid sessions. * @export * @interface ListGridSessionsRequest */ export interface ListGridSessionsRequest { /** * Optional. When provided, only sessions with this synId will be returned. * @type {string} * @memberof ListGridSessionsRequest */ sourceId?: string; /** * Forward the returned 'nextPageToken' to get the next page of results. * @type {string} * @memberof ListGridSessionsRequest */ nextPageToken?: string; } /** * Check if a given object implements the ListGridSessionsRequest interface. */ export declare function instanceOfListGridSessionsRequest(value: object): value is ListGridSessionsRequest; export declare function ListGridSessionsRequestFromJSON(json: any): ListGridSessionsRequest; export declare function ListGridSessionsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListGridSessionsRequest; export declare function ListGridSessionsRequestToJSON(json: any): ListGridSessionsRequest; export declare function ListGridSessionsRequestToJSONTyped(value?: ListGridSessionsRequest | null, ignoreDiscriminator?: boolean): any;