projectmanager-sdk
Version:
Software development kit for the ProjectManager.com API. for TypeScript
52 lines (51 loc) • 1.26 kB
TypeScript
/**
* 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 model that contains the value for a ProjectField.
*/
export type ProjectFieldValueDto = {
/**
* The unique identifier of this Project Field.
*/
id: string;
/**
* The unique Short Id of this Project Field.
*/
shortId: string | null;
/**
* The name of this Project Field.
*/
name: string;
/**
* The type of this Project Field. Valid types are the following:
* * Text
* * Number
* * Date
* * Checkbox
* * Currency
* * Dropdown
*/
type: string;
/**
* The value currently set for this Project Field Value.
*/
value: string;
/**
* Date and time (in UTC) that this TaskField was created.
*/
createdDate: string;
/**
* Date and time (in UTC) that this TaskField was last modified.
*/
modifiedDate: string;
};