Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.32 KB

Workflow.md

File metadata and controls

38 lines (32 loc) · 1.32 KB

Shortcut::Workflow

Properties

Name Type Description Notes
description String A description of the workflow.
entity_type String A string description of this resource.
project_ids Array<Float> An array of IDs of projects within the Workflow.
states Array<WorkflowState> A map of the states in this Workflow.
name String The name of the workflow.
updated_at Time The date the Workflow was updated.
auto_assign_owner Boolean Indicates if an owner is automatically assigned when an unowned story is started.
id Integer The unique ID of the Workflow.
team_id Integer The ID of the team the workflow belongs to.
created_at Time The date the Workflow was created.
default_state_id Integer The unique ID of the default state that new Stories are entered into.

Example

require 'shortcut_client_ruby'

instance = Shortcut::Workflow.new(
  description: null,
  entity_type: null,
  project_ids: null,
  states: null,
  name: null,
  updated_at: null,
  auto_assign_owner: null,
  id: null,
  team_id: null,
  created_at: null,
  default_state_id: null
)