Class: Fizzy::Types::Board
- Inherits:
-
Data
- Object
- Data
- Fizzy::Types::Board
- Defined in:
- lib/fizzy/generated/types.rb
Instance Attribute Summary collapse
-
#all_access ⇒ Object
readonly
Returns the value of attribute all_access.
-
#auto_postpone_period_in_days ⇒ Object
readonly
Returns the value of attribute auto_postpone_period_in_days.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#creator ⇒ Object
readonly
Returns the value of attribute creator.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#public_description ⇒ Object
readonly
Returns the value of attribute public_description.
-
#public_description_html ⇒ Object
readonly
Returns the value of attribute public_description_html.
-
#public_url ⇒ Object
readonly
Returns the value of attribute public_url.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
-
#user_ids ⇒ Object
readonly
Returns the value of attribute user_ids.
Class Method Summary collapse
Instance Attribute Details
#all_access ⇒ Object (readonly)
Returns the value of attribute all_access
156 157 158 |
# File 'lib/fizzy/generated/types.rb', line 156 def all_access @all_access end |
#auto_postpone_period_in_days ⇒ Object (readonly)
Returns the value of attribute auto_postpone_period_in_days
156 157 158 |
# File 'lib/fizzy/generated/types.rb', line 156 def auto_postpone_period_in_days @auto_postpone_period_in_days end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at
156 157 158 |
# File 'lib/fizzy/generated/types.rb', line 156 def created_at @created_at end |
#creator ⇒ Object (readonly)
Returns the value of attribute creator
156 157 158 |
# File 'lib/fizzy/generated/types.rb', line 156 def creator @creator end |
#id ⇒ Object (readonly)
Returns the value of attribute id
156 157 158 |
# File 'lib/fizzy/generated/types.rb', line 156 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name
156 157 158 |
# File 'lib/fizzy/generated/types.rb', line 156 def name @name end |
#public_description ⇒ Object (readonly)
Returns the value of attribute public_description
156 157 158 |
# File 'lib/fizzy/generated/types.rb', line 156 def public_description @public_description end |
#public_description_html ⇒ Object (readonly)
Returns the value of attribute public_description_html
156 157 158 |
# File 'lib/fizzy/generated/types.rb', line 156 def public_description_html @public_description_html end |
#public_url ⇒ Object (readonly)
Returns the value of attribute public_url
156 157 158 |
# File 'lib/fizzy/generated/types.rb', line 156 def public_url @public_url end |
#url ⇒ Object (readonly)
Returns the value of attribute url
156 157 158 |
# File 'lib/fizzy/generated/types.rb', line 156 def url @url end |
#user_ids ⇒ Object (readonly)
Returns the value of attribute user_ids
156 157 158 |
# File 'lib/fizzy/generated/types.rb', line 156 def user_ids @user_ids end |
Class Method Details
.from_json(data) ⇒ Object
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/fizzy/generated/types.rb', line 158 def self.from_json(data) new( id: data["id"], name: data["name"], all_access: data["all_access"], created_at: data["created_at"], auto_postpone_period_in_days: data["auto_postpone_period_in_days"], public_description: data["public_description"], public_description_html: data["public_description_html"], public_url: data["public_url"], user_ids: data["user_ids"], url: data["url"], creator: data["creator"] ) end |