/** * 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. */ /** * The model object represents a single Thread creation. * @export * @interface CreateDiscussionThread */ export interface CreateDiscussionThread { /** * The ID of the forum this CreateThread belongs to * @type {string} * @memberof CreateDiscussionThread */ forumId?: string; /** * The title of the Thread * @type {string} * @memberof CreateDiscussionThread */ title?: string; /** * The markdown of the Thread's message * @type {string} * @memberof CreateDiscussionThread */ messageMarkdown?: string; } /** * Check if a given object implements the CreateDiscussionThread interface. */ export declare function instanceOfCreateDiscussionThread(value: object): value is CreateDiscussionThread; export declare function CreateDiscussionThreadFromJSON(json: any): CreateDiscussionThread; export declare function CreateDiscussionThreadFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateDiscussionThread; export declare function CreateDiscussionThreadToJSON(json: any): CreateDiscussionThread; export declare function CreateDiscussionThreadToJSONTyped(value?: CreateDiscussionThread | null, ignoreDiscriminator?: boolean): any;