Class: ZeusClient::V1::Node

Inherits:
Object
  • Object
show all
Defined in:
lib/zeus/v1/client/models/multiplayer/node.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_atObject

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_idObject

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

#idObject

Returns the value of attribute id.



3
4
5
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 3

def id
  @id
end

#nameObject

Returns the value of attribute name.



3
4
5
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 3

def name
  @name
end

#propertiesObject

Returns the value of attribute properties.



3
4
5
# File 'lib/zeus/v1/client/models/multiplayer/node.rb', line 3

def properties
  @properties
end

#typeObject

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_atObject

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(options={})
    return {
        id: self.id,
        name: self.name,
        type: self.type,
        properties: self.properties,
        created_at: self.created_at,
        updated_at: self.updated_at
    }
end