Class: Gonebusy::GetResourceThingsResponse

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/gonebusy/models/get_resource_things_response.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(things = nil) ⇒ GetResourceThingsResponse

Returns a new instance of GetResourceThingsResponse.



18
19
20
# File 'lib/gonebusy/models/get_resource_things_response.rb', line 18

def initialize(things = nil)
  @things = things
end

Instance Attribute Details

#thingsList of EntitiesThingTypeResponse

TODO: Write general description for this method

Returns:



7
8
9
# File 'lib/gonebusy/models/get_resource_things_response.rb', line 7

def things
  @things
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/gonebusy/models/get_resource_things_response.rb', line 23

def self.from_hash(hash)
  if hash == nil
    nil
  else
    # Extract variables from the hash

    # Parameter is an array, so we need to iterate through it

    things = nil
    if hash["things"] != nil
      things = Array.new
      hash["things"].each{|structure| things << (EntitiesThingTypeResponse.from_hash(structure) if structure)}
    end

    # Create object from extracted values

    GetResourceThingsResponse.new(things)
  end
end

.namesObject

A mapping from model property names to API property names



10
11
12
13
14
15
16
# File 'lib/gonebusy/models/get_resource_things_response.rb', line 10

def self.names
  if @hash.nil?
    @hash = {}
    @hash["things"] = "things"
  end
  @hash
end