/** * 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 { SearchConfiguration } from './SearchConfiguration'; /** * Response containing a page of search configurations. * @export * @interface ListSearchConfigurationsResponse */ export interface ListSearchConfigurationsResponse { /** * The list of search configurations for this page. * @type {Array} * @memberof ListSearchConfigurationsResponse */ results?: Array; /** * Token for the next page of results, if more results exist. * @type {string} * @memberof ListSearchConfigurationsResponse */ nextPageToken?: string; } /** * Check if a given object implements the ListSearchConfigurationsResponse interface. */ export declare function instanceOfListSearchConfigurationsResponse(value: object): value is ListSearchConfigurationsResponse; export declare function ListSearchConfigurationsResponseFromJSON(json: any): ListSearchConfigurationsResponse; export declare function ListSearchConfigurationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListSearchConfigurationsResponse; export declare function ListSearchConfigurationsResponseToJSON(json: any): ListSearchConfigurationsResponse; export declare function ListSearchConfigurationsResponseToJSONTyped(value?: ListSearchConfigurationsResponse | null, ignoreDiscriminator?: boolean): any;