/** * 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 UpdateActivityTypeRequest */ export interface UpdateActivityTypeRequest { /** * The name of the activity type * @type {string} */ 'name'?: string; /** * Icon graphic to use for representing this activity type * @type {string} */ 'icon_key'?: UpdateActivityTypeRequestIconKeyConst; /** * 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 this activity type. Order numbers should be used to order the types in the activity type selections. * @type {number} */ 'order_nr'?: number; } export declare const UpdateActivityTypeRequestIconKeyConst: { 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 UpdateActivityTypeRequestIconKeyConst = typeof UpdateActivityTypeRequestIconKeyConst[keyof typeof UpdateActivityTypeRequestIconKeyConst];