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
989 990 991 |
# File 'lib/fizzy/generated/types.rb', line 989 def column_id @column_id end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at
989 990 991 |
# File 'lib/fizzy/generated/types.rb', line 989 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description
989 990 991 |
# File 'lib/fizzy/generated/types.rb', line 989 def description @description end |
#image ⇒ Object (readonly)
Returns the value of attribute image
989 990 991 |
# File 'lib/fizzy/generated/types.rb', line 989 def image @image end |
#title ⇒ Object (readonly)
Returns the value of attribute title
989 990 991 |
# File 'lib/fizzy/generated/types.rb', line 989 def title @title end |
Class Method Details
.from_json(data) ⇒ Object
991 992 993 994 995 996 997 998 999 |
# File 'lib/fizzy/generated/types.rb', line 991 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 |