/** * Pipedrive API v2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.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. */ import { GetPersonPictureResponseDataPictures } from './get-person-picture-response-data-pictures'; /** * * @export * @interface GetPersonPictureResponseData */ export interface GetPersonPictureResponseData { /** * The ID of the picture. * @type {number} */ 'id'?: number; /** * The type of item the picture is associated with. * @type {string} */ 'item_type'?: string; /** * The ID of the person this picture belongs to. * @type {number} */ 'item_id'?: number; /** * The ID of the user who added the picture. * @type {number} */ 'added_by_user_id'?: number; /** * Whether the picture is active or not. * @type {boolean} */ 'active_flag'?: boolean; /** * The file size in bytes. * @type {number} */ 'file_size'?: number; /** * * @type {GetPersonPictureResponseDataPictures} */ 'pictures'?: GetPersonPictureResponseDataPictures; }