/** * 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 ActivityType */ export interface ActivityType { /** * The ID of the activity type * @type {number} */ 'id': number; /** * The name of the activity type * @type {string} */ 'name': string; /** * Icon graphic to use for representing this activity type * @type {string} */ 'icon_key': ActivityTypeIconKeyConst; /** * A designated color for the activity type in 6-character HEX format (e.g. `FFFFFF` for white, `000000` for black) * @type {string} */ 'color': string; /** * An order number for the activity type. Order numbers should be used to order the types in the activity type selections. * @type {number} */ 'order_nr': number; /** * A string that is generated by the API based on the given name of the activity type upon creation * @type {string} */ 'key_string': string; /** * The active flag of the activity type * @type {boolean} */ 'active_flag': boolean; /** * Whether the activity type is a custom one or not * @type {boolean} */ 'is_custom_flag': boolean; /** * The creation time of the activity type * @type {string} */ 'add_time': string; /** * The update time of the activity type * @type {string} */ 'update_time': string; } export declare const ActivityTypeIconKeyConst: { readonly task: "task"; readonly email: "email"; readonly meeting: "meeting"; readonly deadline: "deadline"; readonly call: "call"; readonly lunch: "lunch"; readonly calendar: "calendar"; readonly downarrow: "downarrow"; readonly document: "document"; readonly smartphone: "smartphone"; readonly camera: "camera"; readonly scissors: "scissors"; readonly cogs: "cogs"; readonly bubble: "bubble"; readonly uparrow: "uparrow"; readonly checkbox: "checkbox"; readonly signpost: "signpost"; readonly shuffle: "shuffle"; readonly addressbook: "addressbook"; readonly linegraph: "linegraph"; readonly picture: "picture"; readonly car: "car"; readonly world: "world"; readonly search: "search"; readonly clip: "clip"; readonly sound: "sound"; readonly brush: "brush"; readonly key: "key"; readonly padlock: "padlock"; readonly pricetag: "pricetag"; readonly suitcase: "suitcase"; readonly finish: "finish"; readonly plane: "plane"; readonly loop: "loop"; readonly wifi: "wifi"; readonly truck: "truck"; readonly cart: "cart"; readonly bulb: "bulb"; readonly bell: "bell"; readonly presentation: "presentation"; }; export type ActivityTypeIconKeyConst = typeof ActivityTypeIconKeyConst[keyof typeof ActivityTypeIconKeyConst];