/** * 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 text analyzers. Returns all analyzers if no organizationName is provided. * @export * @interface ListTextAnalyzersRequest */ export interface ListTextAnalyzersRequest { /** * The name of the Organization to list analyzers for. If not provided, lists all analyzers. * @type {string} * @memberof ListTextAnalyzersRequest */ organizationName?: string; /** * Optional pagination token from a previous response. * @type {string} * @memberof ListTextAnalyzersRequest */ nextPageToken?: string; } /** * Check if a given object implements the ListTextAnalyzersRequest interface. */ export declare function instanceOfListTextAnalyzersRequest(value: object): value is ListTextAnalyzersRequest; export declare function ListTextAnalyzersRequestFromJSON(json: any): ListTextAnalyzersRequest; export declare function ListTextAnalyzersRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListTextAnalyzersRequest; export declare function ListTextAnalyzersRequestToJSON(json: any): ListTextAnalyzersRequest; export declare function ListTextAnalyzersRequestToJSONTyped(value?: ListTextAnalyzersRequest | null, ignoreDiscriminator?: boolean): any;