/** * 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 { DeletePersonField200ResponseData } from './delete-person-field200-response-data'; /** * * @export * @interface DeletePersonField200Response */ export interface DeletePersonField200Response { /** * Whether the request was successful * @type {boolean} */ 'success'?: boolean; /** * * @type {DeletePersonField200ResponseData} */ 'data'?: DeletePersonField200ResponseData; }