/** * 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. */ /** * * @export * @interface UpdateReplyMessage */ export interface UpdateReplyMessage { /** * The new message markdown * @type {string} * @memberof UpdateReplyMessage */ messageMarkdown?: string; } /** * Check if a given object implements the UpdateReplyMessage interface. */ export declare function instanceOfUpdateReplyMessage(value: object): value is UpdateReplyMessage; export declare function UpdateReplyMessageFromJSON(json: any): UpdateReplyMessage; export declare function UpdateReplyMessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateReplyMessage; export declare function UpdateReplyMessageToJSON(json: any): UpdateReplyMessage; export declare function UpdateReplyMessageToJSONTyped(value?: UpdateReplyMessage | null, ignoreDiscriminator?: boolean): any;