/** * 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. */ /** * Represents a match for a search request in a forum, will include the forum and thread ids and if present the reply id matching a serch string * @export * @interface Match */ export interface Match { /** * The ID of the matching forum * @type {string} * @memberof Match */ forumId?: string; /** * The ID of the matching thread * @type {string} * @memberof Match */ threadId?: string; /** * The optional ID of the matching reply * @type {string} * @memberof Match */ replyId?: string; } /** * Check if a given object implements the Match interface. */ export declare function instanceOfMatch(value: object): value is Match; export declare function MatchFromJSON(json: any): Match; export declare function MatchFromJSONTyped(json: any, ignoreDiscriminator: boolean): Match; export declare function MatchToJSON(json: any): Match; export declare function MatchToJSONTyped(value?: Match | null, ignoreDiscriminator?: boolean): any;