projectmanager-sdk
Version:
Software development kit for the ProjectManager.com API. for TypeScript
47 lines (46 loc) • 1.49 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
*/
/**
* Indicate which days of the week are considered working days for this project.
* This value can be set when the project is created but may not be updated afterwards.
*/
export type ProjectWorkingDaysDto = {
/**
* Set this value to true if Monday is considered a working day for this project.
*/
monday: boolean;
/**
* Set this value to true if Tuesday is considered a working day for this project.
*/
tuesday: boolean;
/**
* Set this value to true if Wednesday is considered a working day for this project.
*/
wednesday: boolean;
/**
* Set this value to true if Thursday is considered a working day for this project.
*/
thursday: boolean;
/**
* Set this value to true if Friday is considered a working day for this project.
*/
friday: boolean;
/**
* Set this value to true if Saturday is considered a working day for this project.
*/
saturday: boolean;
/**
* Set this value to true if Sunday is considered a working day for this project.
*/
sunday: boolean;
};