Class: Fizzy::Types::ActivityParticulars
- Inherits:
-
Data
- Object
- Data
- Fizzy::Types::ActivityParticulars
- Defined in:
- lib/fizzy/generated/types.rb
Instance Attribute Summary collapse
-
#assignee_ids ⇒ Object
readonly
Returns the value of attribute assignee_ids.
-
#column ⇒ Object
readonly
Returns the value of attribute column.
-
#new_board ⇒ Object
readonly
Returns the value of attribute new_board.
-
#new_title ⇒ Object
readonly
Returns the value of attribute new_title.
-
#old_board ⇒ Object
readonly
Returns the value of attribute old_board.
-
#old_title ⇒ Object
readonly
Returns the value of attribute old_title.
Class Method Summary collapse
Instance Attribute Details
#assignee_ids ⇒ Object (readonly)
Returns the value of attribute assignee_ids
121 122 123 |
# File 'lib/fizzy/generated/types.rb', line 121 def assignee_ids @assignee_ids end |
#column ⇒ Object (readonly)
Returns the value of attribute column
121 122 123 |
# File 'lib/fizzy/generated/types.rb', line 121 def column @column end |
#new_board ⇒ Object (readonly)
Returns the value of attribute new_board
121 122 123 |
# File 'lib/fizzy/generated/types.rb', line 121 def new_board @new_board end |
#new_title ⇒ Object (readonly)
Returns the value of attribute new_title
121 122 123 |
# File 'lib/fizzy/generated/types.rb', line 121 def new_title @new_title end |
#old_board ⇒ Object (readonly)
Returns the value of attribute old_board
121 122 123 |
# File 'lib/fizzy/generated/types.rb', line 121 def old_board @old_board end |
#old_title ⇒ Object (readonly)
Returns the value of attribute old_title
121 122 123 |
# File 'lib/fizzy/generated/types.rb', line 121 def old_title @old_title end |
Class Method Details
.from_json(data) ⇒ Object
123 124 125 126 127 128 129 130 131 132 |
# File 'lib/fizzy/generated/types.rb', line 123 def self.from_json(data) new( assignee_ids: data["assignee_ids"], old_board: data["old_board"], new_board: data["new_board"], old_title: data["old_title"], new_title: data["new_title"], column: data["column"] ) end |