/** * 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 AddLeadLabelRequest */ export interface AddLeadLabelRequest { /** * The name of the lead label * @type {string} */ 'name': string; /** * The color of the label. Only a subset of colors can be used. * @type {string} */ 'color': AddLeadLabelRequestColorConst; } export declare const AddLeadLabelRequestColorConst: { readonly blue: "blue"; readonly brown: "brown"; readonly dark_gray: "dark-gray"; readonly gray: "gray"; readonly green: "green"; readonly orange: "orange"; readonly pink: "pink"; readonly purple: "purple"; readonly red: "red"; readonly yellow: "yellow"; }; export type AddLeadLabelRequestColorConst = typeof AddLeadLabelRequestColorConst[keyof typeof AddLeadLabelRequestColorConst];