Class: ZeusClient::V1::Node
- Inherits:
-
Object
- Object
- ZeusClient::V1::Node
- Defined in:
- lib/zeus/v1/client/models/multiplayer/node.rb
Instance Attribute Summary collapse
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#document_id ⇒ Object
Returns the value of attribute document_id.
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
-
#properties ⇒ Object
Returns the value of attribute properties.
-
#type ⇒ Object
Returns the value of attribute type.
-
#updated_at ⇒ Object
Returns the value of attribute updated_at.
Instance Method Summary collapse
- #as_json(options = {}) ⇒ Object
-
#initialize(node) ⇒ Node
constructor
A new instance of Node.
Constructor Details
#initialize(node) ⇒ Node
Returns a new instance of Node.
5 6 7 8 9 10 11 12 |
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 5 def initialize(node) self.id = node["id"] self.name = node["name"] self.type = node["type"] self.properties = node["properties"] self.created_at = node["created_at"] self.updated_at = node["updated_at"] end |
Instance Attribute Details
#created_at ⇒ Object
Returns the value of attribute created_at.
3 4 5 |
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 3 def created_at @created_at end |
#document_id ⇒ Object
Returns the value of attribute document_id.
3 4 5 |
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 3 def document_id @document_id end |
#id ⇒ Object
Returns the value of attribute id.
3 4 5 |
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 3 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
3 4 5 |
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 3 def name @name end |
#properties ⇒ Object
Returns the value of attribute properties.
3 4 5 |
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 3 def properties @properties end |
#type ⇒ Object
Returns the value of attribute type.
3 4 5 |
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 3 def type @type end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
3 4 5 |
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 3 def updated_at @updated_at end |
Instance Method Details
#as_json(options = {}) ⇒ Object
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 14 def as_json(={}) return { id: self.id, name: self.name, type: self.type, properties: self.properties, created_at: self.created_at, updated_at: self.updated_at } end |