Class: Fizzy::Types::BoardAccesses
- Inherits:
-
Data
- Object
- Data
- Fizzy::Types::BoardAccesses
- Defined in:
- lib/fizzy/generated/types.rb
Instance Attribute Summary collapse
-
#all_access ⇒ Object
readonly
Returns the value of attribute all_access.
-
#board_id ⇒ Object
readonly
Returns the value of attribute board_id.
-
#users ⇒ Object
readonly
Returns the value of attribute users.
Class Method Summary collapse
Instance Attribute Details
#all_access ⇒ Object (readonly)
Returns the value of attribute all_access
195 196 197 |
# File 'lib/fizzy/generated/types.rb', line 195 def all_access @all_access end |
#board_id ⇒ Object (readonly)
Returns the value of attribute board_id
195 196 197 |
# File 'lib/fizzy/generated/types.rb', line 195 def board_id @board_id end |
#users ⇒ Object (readonly)
Returns the value of attribute users
195 196 197 |
# File 'lib/fizzy/generated/types.rb', line 195 def users @users end |
Class Method Details
.from_json(data) ⇒ Object
197 198 199 200 201 202 203 |
# File 'lib/fizzy/generated/types.rb', line 197 def self.from_json(data) new( board_id: data["board_id"], all_access: data["all_access"], users: data["users"] ) end |