/** * 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. */ /** * Multipart Message Attachment * @export * @interface MultipartAttachment */ export interface MultipartAttachment { /** * The content of the attachment in base-64 encoding, if the message isn't using an attachment store. * @type {string} * @memberof MultipartAttachment */ content?: string; /** * The ID used to reference the content elsewhere in the multipart message. * @type {string} * @memberof MultipartAttachment */ content_id?: string; /** * A URL to the attachment if the attachment is within an attachment store. * @type {string} * @memberof MultipartAttachment */ url?: string; /** * The original file name of the attachment. * @type {string} * @memberof MultipartAttachment */ file_name?: string; /** * The content type of the attachment. * @type {string} * @memberof MultipartAttachment */ content_type?: string; /** * The size of the attachment. * @type {string} * @memberof MultipartAttachment */ size?: string; /** * The disposition of the attachment either attachment or inline. * @type {string} * @memberof MultipartAttachment */ disposition?: string; } /** * Check if a given object implements the MultipartAttachment interface. */ export declare function instanceOfMultipartAttachment(value: object): value is MultipartAttachment; export declare function MultipartAttachmentFromJSON(json: any): MultipartAttachment; export declare function MultipartAttachmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): MultipartAttachment; export declare function MultipartAttachmentToJSON(json: any): MultipartAttachment; export declare function MultipartAttachmentToJSONTyped(value?: MultipartAttachment | null, ignoreDiscriminator?: boolean): any;