Class: Fizzy::Types::BoardAccessUser
- Inherits:
-
Data
- Object
- Data
- Fizzy::Types::BoardAccessUser
- Defined in:
- lib/fizzy/generated/types.rb
Instance Attribute Summary collapse
-
#active ⇒ Object
readonly
Returns the value of attribute active.
-
#avatar_url ⇒ Object
readonly
Returns the value of attribute avatar_url.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#email_address ⇒ Object
readonly
Returns the value of attribute email_address.
-
#has_access ⇒ Object
readonly
Returns the value of attribute has_access.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#involvement ⇒ Object
readonly
Returns the value of attribute involvement.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#role ⇒ Object
readonly
Returns the value of attribute role.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Class Method Summary collapse
Instance Attribute Details
#active ⇒ Object (readonly)
Returns the value of attribute active
176 177 178 |
# File 'lib/fizzy/generated/types.rb', line 176 def active @active end |
#avatar_url ⇒ Object (readonly)
Returns the value of attribute avatar_url
176 177 178 |
# File 'lib/fizzy/generated/types.rb', line 176 def avatar_url @avatar_url end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at
176 177 178 |
# File 'lib/fizzy/generated/types.rb', line 176 def created_at @created_at end |
#email_address ⇒ Object (readonly)
Returns the value of attribute email_address
176 177 178 |
# File 'lib/fizzy/generated/types.rb', line 176 def email_address @email_address end |
#has_access ⇒ Object (readonly)
Returns the value of attribute has_access
176 177 178 |
# File 'lib/fizzy/generated/types.rb', line 176 def has_access @has_access end |
#id ⇒ Object (readonly)
Returns the value of attribute id
176 177 178 |
# File 'lib/fizzy/generated/types.rb', line 176 def id @id end |
#involvement ⇒ Object (readonly)
Returns the value of attribute involvement
176 177 178 |
# File 'lib/fizzy/generated/types.rb', line 176 def involvement @involvement end |
#name ⇒ Object (readonly)
Returns the value of attribute name
176 177 178 |
# File 'lib/fizzy/generated/types.rb', line 176 def name @name end |
#role ⇒ Object (readonly)
Returns the value of attribute role
176 177 178 |
# File 'lib/fizzy/generated/types.rb', line 176 def role @role end |
#url ⇒ Object (readonly)
Returns the value of attribute url
176 177 178 |
# File 'lib/fizzy/generated/types.rb', line 176 def url @url end |
Class Method Details
.from_json(data) ⇒ Object
178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/fizzy/generated/types.rb', line 178 def self.from_json(data) new( id: data["id"], name: data["name"], role: data["role"], active: data["active"], email_address: data["email_address"], created_at: data["created_at"], url: data["url"], avatar_url: data["avatar_url"], has_access: data["has_access"], involvement: data["involvement"] ) end |