Class: Fizzy::Types::NotificationCard
- Inherits:
-
Data
- Object
- Data
- Fizzy::Types::NotificationCard
- Defined in:
- lib/fizzy/generated/types.rb
Instance Attribute Summary collapse
-
#board_name ⇒ Object
readonly
Returns the value of attribute board_name.
-
#closed ⇒ Object
readonly
Returns the value of attribute closed.
-
#column ⇒ Object
readonly
Returns the value of attribute column.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#number ⇒ Object
readonly
Returns the value of attribute number.
-
#postponed ⇒ Object
readonly
Returns the value of attribute postponed.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#title ⇒ Object
readonly
Returns the value of attribute title.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Class Method Summary collapse
Instance Attribute Details
#board_name ⇒ Object (readonly)
Returns the value of attribute board_name
736 737 738 |
# File 'lib/fizzy/generated/types.rb', line 736 def board_name @board_name end |
#closed ⇒ Object (readonly)
Returns the value of attribute closed
736 737 738 |
# File 'lib/fizzy/generated/types.rb', line 736 def closed @closed end |
#column ⇒ Object (readonly)
Returns the value of attribute column
736 737 738 |
# File 'lib/fizzy/generated/types.rb', line 736 def column @column end |
#id ⇒ Object (readonly)
Returns the value of attribute id
736 737 738 |
# File 'lib/fizzy/generated/types.rb', line 736 def id @id end |
#number ⇒ Object (readonly)
Returns the value of attribute number
736 737 738 |
# File 'lib/fizzy/generated/types.rb', line 736 def number @number end |
#postponed ⇒ Object (readonly)
Returns the value of attribute postponed
736 737 738 |
# File 'lib/fizzy/generated/types.rb', line 736 def postponed @postponed end |
#status ⇒ Object (readonly)
Returns the value of attribute status
736 737 738 |
# File 'lib/fizzy/generated/types.rb', line 736 def status @status end |
#title ⇒ Object (readonly)
Returns the value of attribute title
736 737 738 |
# File 'lib/fizzy/generated/types.rb', line 736 def title @title end |
#url ⇒ Object (readonly)
Returns the value of attribute url
736 737 738 |
# File 'lib/fizzy/generated/types.rb', line 736 def url @url end |
Class Method Details
.from_json(data) ⇒ Object
738 739 740 741 742 743 744 745 746 747 748 749 750 |
# File 'lib/fizzy/generated/types.rb', line 738 def self.from_json(data) new( id: data["id"], number: data["number"], title: data["title"], status: data["status"], board_name: data["board_name"], closed: data["closed"], postponed: data["postponed"], url: data["url"], column: data["column"] ) end |