Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.08 KB

CreateIteration.md

File metadata and controls

30 lines (24 loc) · 1.08 KB

Shortcut::CreateIteration

Properties

Name Type Description Notes
follower_ids Array<String> An array of UUIDs for any Members you want to add as Followers. [optional]
group_ids Array<String> An array of UUIDs for any Groups you want to add as Followers. Currently, only one Group association is presented in our web UI. [optional]
labels Array<CreateLabelParams> An array of Labels attached to the Iteration. [optional]
description String The description of the Iteration. [optional]
name String The name of this Iteration.
start_date String The date this Iteration begins, e.g. 2019-07-01.
end_date String The date this Iteration ends, e.g. 2019-07-01.

Example

require 'shortcut_client_ruby'

instance = Shortcut::CreateIteration.new(
  follower_ids: null,
  group_ids: null,
  labels: null,
  description: null,
  name: null,
  start_date: null,
  end_date: null
)