/** * 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 { GetActivityFields200ResponseDataInnerOptionsInnerId } from './get-activity-fields200-response-data-inner-options-inner-id'; /** * * @export * @interface GetActivityFields200ResponseDataInnerOptionsInner */ export interface GetActivityFields200ResponseDataInnerOptionsInner { /** * * @type {GetActivityFields200ResponseDataInnerOptionsInnerId} */ 'id'?: GetActivityFields200ResponseDataInnerOptionsInnerId; /** * The option display label * @type {string} */ 'label'?: string; /** * Optional color code for the option * @type {string} */ 'color'?: string | null; /** * When the option was last updated * @type {string} */ 'update_time'?: string | null; /** * When the option was created * @type {string} */ 'add_time'?: string | null; }