/** * 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 Reply creation. * @export * @interface CreateDiscussionReply */ export interface CreateDiscussionReply { /** * The ID of the thread this Reply belongs to * @type {string} * @memberof CreateDiscussionReply */ threadId?: string; /** * The markdown of the Reply's message * @type {string} * @memberof CreateDiscussionReply */ messageMarkdown?: string; } /** * Check if a given object implements the CreateDiscussionReply interface. */ export declare function instanceOfCreateDiscussionReply(value: object): value is CreateDiscussionReply; export declare function CreateDiscussionReplyFromJSON(json: any): CreateDiscussionReply; export declare function CreateDiscussionReplyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateDiscussionReply; export declare function CreateDiscussionReplyToJSON(json: any): CreateDiscussionReply; export declare function CreateDiscussionReplyToJSONTyped(value?: CreateDiscussionReply | null, ignoreDiscriminator?: boolean): any;