Class: Fizzy::Types::UpdateBoardRequestContent
- Inherits:
-
Data
- Object
- Data
- Fizzy::Types::UpdateBoardRequestContent
- 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.
-
#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
961 962 963 |
# File 'lib/fizzy/generated/types.rb', line 961 def all_access @all_access end |
#auto_postpone_period_in_days ⇒ Object (readonly)
Returns the value of attribute auto_postpone_period_in_days
961 962 963 |
# File 'lib/fizzy/generated/types.rb', line 961 def auto_postpone_period_in_days @auto_postpone_period_in_days end |
#name ⇒ Object (readonly)
Returns the value of attribute name
961 962 963 |
# File 'lib/fizzy/generated/types.rb', line 961 def name @name end |
#public_description ⇒ Object (readonly)
Returns the value of attribute public_description
961 962 963 |
# File 'lib/fizzy/generated/types.rb', line 961 def public_description @public_description end |
#user_ids ⇒ Object (readonly)
Returns the value of attribute user_ids
961 962 963 |
# File 'lib/fizzy/generated/types.rb', line 961 def user_ids @user_ids end |
Class Method Details
.from_json(data) ⇒ Object
963 964 965 966 967 968 969 970 971 |
# File 'lib/fizzy/generated/types.rb', line 963 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"], user_ids: data["user_ids"] ) end |