Class: Fizzy::Types::CreateCardRequestContent
- Inherits:
-
Data
- Object
- Data
- Fizzy::Types::CreateCardRequestContent
- Defined in:
- lib/fizzy/generated/types.rb
Instance Attribute Summary collapse
-
#assignee_ids ⇒ Object
readonly
Returns the value of attribute assignee_ids.
-
#board_id ⇒ Object
readonly
Returns the value of attribute board_id.
-
#column_id ⇒ Object
readonly
Returns the value of attribute column_id.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#image ⇒ Object
readonly
Returns the value of attribute image.
-
#last_active_at ⇒ Object
readonly
Returns the value of attribute last_active_at.
-
#tag_names ⇒ Object
readonly
Returns the value of attribute tag_names.
-
#title ⇒ Object
readonly
Returns the value of attribute title.
Class Method Summary collapse
Instance Attribute Details
#assignee_ids ⇒ Object (readonly)
Returns the value of attribute assignee_ids
357 358 359 |
# File 'lib/fizzy/generated/types.rb', line 357 def assignee_ids @assignee_ids end |
#board_id ⇒ Object (readonly)
Returns the value of attribute board_id
357 358 359 |
# File 'lib/fizzy/generated/types.rb', line 357 def board_id @board_id end |
#column_id ⇒ Object (readonly)
Returns the value of attribute column_id
357 358 359 |
# File 'lib/fizzy/generated/types.rb', line 357 def column_id @column_id end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at
357 358 359 |
# File 'lib/fizzy/generated/types.rb', line 357 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description
357 358 359 |
# File 'lib/fizzy/generated/types.rb', line 357 def description @description end |
#image ⇒ Object (readonly)
Returns the value of attribute image
357 358 359 |
# File 'lib/fizzy/generated/types.rb', line 357 def image @image end |
#last_active_at ⇒ Object (readonly)
Returns the value of attribute last_active_at
357 358 359 |
# File 'lib/fizzy/generated/types.rb', line 357 def last_active_at @last_active_at end |
#tag_names ⇒ Object (readonly)
Returns the value of attribute tag_names
357 358 359 |
# File 'lib/fizzy/generated/types.rb', line 357 def tag_names @tag_names end |
#title ⇒ Object (readonly)
Returns the value of attribute title
357 358 359 |
# File 'lib/fizzy/generated/types.rb', line 357 def title @title end |
Class Method Details
.from_json(data) ⇒ Object
359 360 361 362 363 364 365 366 367 368 369 370 371 |
# File 'lib/fizzy/generated/types.rb', line 359 def self.from_json(data) new( title: data["title"], board_id: data["board_id"], column_id: data["column_id"], description: data["description"], assignee_ids: data["assignee_ids"], tag_names: data["tag_names"], image: data["image"], created_at: data["created_at"], last_active_at: data["last_active_at"] ) end |