/** * 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. */ import type { FormData } from './FormData'; /** * A single page of results from a ListRequest. * @export * @interface ListResponse */ export interface ListResponse { /** * A single page of results matching the request. * @type {Array} * @memberof ListResponse */ page?: Array; /** * The results are automatically paginated. If another page of results exists then a nextPageToken will be provided. Forward the provided nextPageTokens in a subsequent list request to get the next page. * @type {string} * @memberof ListResponse */ nextPageToken?: string; } /** * Check if a given object implements the ListResponse interface. */ export declare function instanceOfListResponse(value: object): value is ListResponse; export declare function ListResponseFromJSON(json: any): ListResponse; export declare function ListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResponse; export declare function ListResponseToJSON(json: any): ListResponse; export declare function ListResponseToJSONTyped(value?: ListResponse | null, ignoreDiscriminator?: boolean): any;