/** * 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. */ import { GoalAssignee } from './goal-assignee'; import { GoalDuration } from './goal-duration'; import { GoalExpectedOutcome } from './goal-expected-outcome'; import { GoalType } from './goal-type'; /** * * @export * @interface Goal */ export interface Goal { /** * The ID of the goal * @type {string} */ 'id': string; /** * The ID of the creator of the goal * @type {number} */ 'owner_id': number; /** * The title of the goal * @type {string} */ 'title': string; /** * * @type {GoalType} */ 'type': GoalType; /** * * @type {GoalAssignee} */ 'assignee': GoalAssignee; /** * The interval of the goal * @type {string} */ 'interval': string; /** * * @type {GoalDuration} */ 'duration': GoalDuration; /** * * @type {GoalExpectedOutcome} */ 'expected_outcome': GoalExpectedOutcome; /** * Whether the goal is currently active or not * @type {boolean} */ 'is_active': boolean; /** * The IDs of the reports that belong to the goal * @type {Array} */ 'report_ids': Array; }