UNPKG

@esm-js/jira.js

Version:

A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.

7 lines (6 loc) 355 B
export interface CreateDateFieldRequest { /** A date custom field ID. This is required if the type is "DateCustomField". */ dateCustomFieldId?: number; /** The date field type. This must be "DueDate", "TargetStartDate", "TargetEndDate" or "DateCustomField". */ type: 'DueDate' | 'TargetStartDate' | 'TargetEndDate' | 'DateCustomField' | string; }