/** * 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 search configurations, optionally filtered by organization. * @export * @interface ListSearchConfigurationsRequest */ export interface ListSearchConfigurationsRequest { /** * Optional filter by organization name. * @type {string} * @memberof ListSearchConfigurationsRequest */ organizationName?: string; /** * Token for the next page of results. * @type {string} * @memberof ListSearchConfigurationsRequest */ nextPageToken?: string; } /** * Check if a given object implements the ListSearchConfigurationsRequest interface. */ export declare function instanceOfListSearchConfigurationsRequest(value: object): value is ListSearchConfigurationsRequest; export declare function ListSearchConfigurationsRequestFromJSON(json: any): ListSearchConfigurationsRequest; export declare function ListSearchConfigurationsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListSearchConfigurationsRequest; export declare function ListSearchConfigurationsRequestToJSON(json: any): ListSearchConfigurationsRequest; export declare function ListSearchConfigurationsRequestToJSONTyped(value?: ListSearchConfigurationsRequest | null, ignoreDiscriminator?: boolean): any;