UNPKG

projectmanager-sdk

Version:

Software development kit for the ProjectManager.com API. for TypeScript

41 lines (40 loc) 1.21 kB
/** * ProjectManager API for TypeScript * * (c) ProjectManager.com, Inc. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @author ProjectManager.com <support@projectmanager.com> * @copyright ProjectManager.com, Inc. * @link https://github.com/projectmgr/projectmanager-sdk-typescript */ /** * A TaskStatus is a named status level used by your business to determine how to measure the * progress of Tasks. You can define your own named status levels that are appropriate for * your business and determine which status levels are considered done. */ export type TaskStatusDto = { /** * The unique identifier of this TaskStatus. */ id: string; /** * The unique identifier of the Project to which this TaskStatus belongs. */ projectId: string; /** * The name of this TaskStatus. */ name: string; /** * A numerical value that can be used to sort TaskStatus values according to the * needs of your business. */ order: number; /** * True if a Task in this TaskStatus is considered done. */ isDone: boolean; };