/** * 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 { MultipartAttachment } from './MultipartAttachment'; /** * JSON schema for a multipart message body * @export * @interface MessageBody */ export interface MessageBody { /** * Message body, as plain text. * @type {string} * @memberof MessageBody */ plain?: string; /** * Message body, as html. * @type {string} * @memberof MessageBody */ html?: string; /** * Attachments to the message. * @type {Array} * @memberof MessageBody */ attachments?: Array; } /** * Check if a given object implements the MessageBody interface. */ export declare function instanceOfMessageBody(value: object): value is MessageBody; export declare function MessageBodyFromJSON(json: any): MessageBody; export declare function MessageBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): MessageBody; export declare function MessageBodyToJSON(json: any): MessageBody; export declare function MessageBodyToJSONTyped(value?: MessageBody | null, ignoreDiscriminator?: boolean): any;