/** * 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. */ /** * The file data * @export * @interface GetFilesResponseDataInner */ export interface GetFilesResponseDataInner { /** * The ID of the file * @type {number} */ 'id'?: number; /** * The ID of the user to associate the file with * @type {number} */ 'user_id'?: number; /** * The ID of the deal to associate the file with * @type {number} */ 'deal_id'?: number; /** * The ID of the person to associate the file with * @type {number} */ 'person_id'?: number; /** * The ID of the organization to associate the file with * @type {number} */ 'org_id'?: number; /** * The ID of the product to associate the file with * @type {number} */ 'product_id'?: number; /** * The ID of the activity to associate the file with * @type {number} */ 'activity_id'?: number; /** * The ID of the lead to associate the file with * @type {string} */ 'lead_id'?: string; /** * The ID of the project to associate the file with * @type {number} */ 'project_id'?: number; /** * The date and time when the file was added/created. Format: YYYY-MM-DD HH:MM:SS * @type {string} */ 'add_time'?: string; /** * The last updated date and time of the file. Format: YYYY-MM-DD HH:MM:SS * @type {string} */ 'update_time'?: string; /** * The original name of the file * @type {string} */ 'file_name'?: string; /** * The size of the file * @type {number} */ 'file_size'?: number; /** * Whether the user is active or not. false = Not activated, true = Activated * @type {boolean} */ 'active_flag'?: boolean; /** * Whether the file was uploaded as inline or not * @type {boolean} */ 'inline_flag'?: boolean; /** * The location type to send the file to. Only googledrive is supported at the moment. * @type {string} */ 'remote_location'?: string; /** * The ID of the remote item * @type {string} */ 'remote_id'?: string; /** * The ID of the inline attachment * @type {string} */ 'cid'?: string; /** * The location of the cloud storage * @type {string} */ 's3_bucket'?: string; /** * The ID of the mail message to associate the file with * @type {string} */ 'mail_message_id'?: string; /** * The ID of the mail template to associate the file with * @type {string} */ 'mail_template_id'?: string; /** * The name of the deal associated with the file * @type {string} */ 'deal_name'?: string; /** * The name of the person associated with the file * @type {string} */ 'person_name'?: string; /** * The name of the organization associated with the file * @type {string} */ 'org_name'?: string; /** * The name of the product associated with the file * @type {string} */ 'product_name'?: string; /** * The name of the lead associated with the file * @type {string} */ 'lead_name'?: string; /** * The name of the project associated with the file * @type {string} */ 'project_name'?: string; /** * The URL of the download file * @type {string} */ 'url'?: string; /** * The visible name of the file * @type {string} */ 'name'?: string; /** * The description of the file * @type {string} */ 'description'?: string; }