Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.33 KB

Label.md

File metadata and controls

38 lines (32 loc) · 1.33 KB

Shortcut::Label

Properties

Name Type Description Notes
app_url String The Shortcut application url for the Label.
description String The description of the Label.
archived Boolean A true/false boolean indicating if the Label has been archived.
entity_type String A string description of this resource.
color String The hex color to be displayed with the Label (for example, "#ff0000").
name String The name of the Label.
updated_at Time The time/date that the Label was updated.
external_id String This field can be set to another unique ID. In the case that the Label has been imported from another tool, the ID in the other tool can be indicated here.
id Integer The unique ID of the Label.
stats LabelStats [optional]
created_at Time The time/date that the Label was created.

Example

require 'shortcut_client_ruby'

instance = Shortcut::Label.new(
  app_url: null,
  description: null,
  archived: null,
  entity_type: null,
  color: null,
  name: null,
  updated_at: null,
  external_id: null,
  id: null,
  stats: null,
  created_at: null
)