/** * 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. */ /** * An object containing conversion status. After successful conversion the converted entity ID is also present. * @export * @interface GetConvertResponse1Data */ export interface GetConvertResponse1Data { /** * The ID of the conversion job. The ID can be used to retrieve conversion status and details. The ID has UUID format. * @type {string} */ 'conversion_id': string; /** * Status of the conversion job. * @type {string} */ 'status': GetConvertResponse1DataStatusConst; /** * The ID of the new lead. * @type {string} */ 'lead_id'?: string; /** * The ID of the new deal. * @type {number} */ 'deal_id'?: number; } export declare const GetConvertResponse1DataStatusConst: { readonly not_started: "not_started"; readonly running: "running"; readonly completed: "completed"; readonly failed: "failed"; readonly rejected: "rejected"; }; export type GetConvertResponse1DataStatusConst = typeof GetConvertResponse1DataStatusConst[keyof typeof GetConvertResponse1DataStatusConst];