Class: Gonebusy::EntitiesResourceAvailabilities

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(id = nil, available_slots = nil) ⇒ EntitiesResourceAvailabilities

Returns a new instance of EntitiesResourceAvailabilities.



23
24
25
26
27
# File 'lib/gonebusy/models/entities_resource_availabilities.rb', line 23

def initialize(id = nil,
               available_slots = nil)
  @id = id
  @available_slots = available_slots
end

Instance Attribute Details

#available_slotsList of EntitiesSlots

array of available date and time slots

Returns:



11
12
13
# File 'lib/gonebusy/models/entities_resource_availabilities.rb', line 11

def available_slots
  @available_slots
end

#idInteger

id of Resource

Returns:

  • (Integer)


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

def id
  @id
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/gonebusy/models/entities_resource_availabilities.rb', line 30

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash
  id = hash['id']
  # Parameter is an array, so we need to iterate through it
  available_slots = nil
  if hash['available_slots'] != nil
    available_slots = Array.new
    hash['available_slots'].each{|structure| available_slots << (EntitiesSlots.from_hash(structure) if structure)}
  end

  # Create object from extracted values
  EntitiesResourceAvailabilities.new(id,
                                     available_slots)
end

.namesObject

A mapping from model property names to API property names



14
15
16
17
18
19
20
21
# File 'lib/gonebusy/models/entities_resource_availabilities.rb', line 14

def self.names
  if @_hash.nil?
    @_hash = {}
    @_hash["id"] = "id"
    @_hash["available_slots"] = "available_slots"
  end
  @_hash
end