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