Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 642 Bytes

CreateStoryLinkParams.md

File metadata and controls

22 lines (16 loc) · 642 Bytes

Shortcut::CreateStoryLinkParams

Properties

Name Type Description Notes
subject_id Integer The unique ID of the Story defined as subject. [optional]
verb String How the subject Story acts on the object Story. This can be "blocks", "duplicates", or "relates to".
object_id Integer The unique ID of the Story defined as object. [optional]

Example

require 'shortcut_client_ruby'

instance = Shortcut::CreateStoryLinkParams.new(
  subject_id: null,
  verb: null,
  object_id: null
)