/** * Pipedrive API v1 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * 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 ReceiveMessageRequestAttachmentsInner */ export interface ReceiveMessageRequestAttachmentsInner { /** * The ID of the attachment * @type {string} */ 'id': string; /** * The mime-type of the attachment * @type {string} */ 'type': string; /** * A URL to the file * @type {string} */ 'url': string; /** * The name of the attachment * @type {string} */ 'name'?: string; /** * The size of the attachment * @type {number} */ 'size'?: number; /** * A URL to a preview picture of the file * @type {string} */ 'preview_url'?: string; /** * If true, it will use the getMessageById endpoint for fetching updated attachment\'s urls. Find out more [here](https://pipedrive.readme.io/docs/implementing-messaging-app-extension) * @type {boolean} */ 'link_expires'?: boolean; }