/** * 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 { Match } from './Match'; /** * The response to a DiscussionSearchRequest. * @export * @interface DiscussionSearchResponse */ export interface DiscussionSearchResponse { /** * A single page of results matching the original DiscussionSearchRequest. * @type {Array} * @memberof DiscussionSearchResponse */ matches?: Array; /** * When present, then another page of results exists. Forward this token in another request to fetch the next page of results. * @type {string} * @memberof DiscussionSearchResponse */ nextPageToken?: string; } /** * Check if a given object implements the DiscussionSearchResponse interface. */ export declare function instanceOfDiscussionSearchResponse(value: object): value is DiscussionSearchResponse; export declare function DiscussionSearchResponseFromJSON(json: any): DiscussionSearchResponse; export declare function DiscussionSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DiscussionSearchResponse; export declare function DiscussionSearchResponseToJSON(json: any): DiscussionSearchResponse; export declare function DiscussionSearchResponseToJSONTyped(value?: DiscussionSearchResponse | null, ignoreDiscriminator?: boolean): any;