Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 813 Bytes

CreateCategory.md

File metadata and controls

24 lines (18 loc) · 813 Bytes

Shortcut::CreateCategory

Properties

Name Type Description Notes
name String The name of the new Category.
color String The hex color to be displayed with the Category (for example, "#ff0000"). [optional]
external_id String This field can be set to another unique ID. In the case that the Category has been imported from another tool, the ID in the other tool can be indicated here. [optional]
type String The type of entity this Category is associated with; currently Milestone is the only type of Category.

Example

require 'shortcut_client_ruby'

instance = Shortcut::CreateCategory.new(
  name: null,
  color: null,
  external_id: null,
  type: null
)