Class: Fizzy::Types::UpdateCardRequestContent
- Inherits:
-
Data
- Object
- Data
- Fizzy::Types::UpdateCardRequestContent
- Defined in:
- lib/fizzy/generated/types.rb
Instance Attribute Summary collapse
-
#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.
-
#title ⇒ Object
readonly
Returns the value of attribute title.
Class Method Summary collapse
Instance Attribute Details
#column_id ⇒ Object (readonly)
Returns the value of attribute column_id
978 979 980 |
# File 'lib/fizzy/generated/types.rb', line 978 def column_id @column_id end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at
978 979 980 |
# File 'lib/fizzy/generated/types.rb', line 978 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description
978 979 980 |
# File 'lib/fizzy/generated/types.rb', line 978 def description @description end |
#image ⇒ Object (readonly)
Returns the value of attribute image
978 979 980 |
# File 'lib/fizzy/generated/types.rb', line 978 def image @image end |
#title ⇒ Object (readonly)
Returns the value of attribute title
978 979 980 |
# File 'lib/fizzy/generated/types.rb', line 978 def title @title end |
Class Method Details
.from_json(data) ⇒ Object
980 981 982 983 984 985 986 987 988 |
# File 'lib/fizzy/generated/types.rb', line 980 def self.from_json(data) new( title: data["title"], description: data["description"], column_id: data["column_id"], image: data["image"], created_at: data["created_at"] ) end |