Class: Fizzy::Types::CreateBoardRequestContent
- Inherits:
-
Data
- Object
- Data
- Fizzy::Types::CreateBoardRequestContent
- 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.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#public_description ⇒ Object
readonly
Returns the value of attribute public_description.
Class Method Summary collapse
Instance Attribute Details
#all_access ⇒ Object (readonly)
Returns the value of attribute all_access
328 329 330 |
# File 'lib/fizzy/generated/types.rb', line 328 def all_access @all_access end |
#auto_postpone_period_in_days ⇒ Object (readonly)
Returns the value of attribute auto_postpone_period_in_days
328 329 330 |
# File 'lib/fizzy/generated/types.rb', line 328 def auto_postpone_period_in_days @auto_postpone_period_in_days end |
#name ⇒ Object (readonly)
Returns the value of attribute name
328 329 330 |
# File 'lib/fizzy/generated/types.rb', line 328 def name @name end |
#public_description ⇒ Object (readonly)
Returns the value of attribute public_description
328 329 330 |
# File 'lib/fizzy/generated/types.rb', line 328 def public_description @public_description end |
Class Method Details
.from_json(data) ⇒ Object
330 331 332 333 334 335 336 337 |
# File 'lib/fizzy/generated/types.rb', line 330 def self.from_json(data) new( name: data["name"], all_access: data["all_access"], auto_postpone_period_in_days: data["auto_postpone_period_in_days"], public_description: data["public_description"] ) end |