Class: Gonebusy::GetSchedulesResponse
- Defined in:
- lib/gonebusy/models/get_schedules_response.rb
Instance Attribute Summary collapse
-
#schedules ⇒ List of EntitiesScheduleResponse
TODO: Write general description for this method.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
Instance Method Summary collapse
-
#initialize(schedules = nil) ⇒ GetSchedulesResponse
constructor
A new instance of GetSchedulesResponse.
Methods inherited from BaseModel
Constructor Details
#initialize(schedules = nil) ⇒ GetSchedulesResponse
Returns a new instance of GetSchedulesResponse.
18 19 20 |
# File 'lib/gonebusy/models/get_schedules_response.rb', line 18 def initialize(schedules = nil) @schedules = schedules end |
Instance Attribute Details
#schedules ⇒ List of EntitiesScheduleResponse
TODO: Write general description for this method
7 8 9 |
# File 'lib/gonebusy/models/get_schedules_response.rb', line 7 def schedules @schedules 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 |
# File 'lib/gonebusy/models/get_schedules_response.rb', line 23 def self.from_hash(hash) return nil unless hash # Extract variables from the hash # Parameter is an array, so we need to iterate through it schedules = nil if hash['schedules'] != nil schedules = Array.new hash['schedules'].each{|structure| schedules << (EntitiesScheduleResponse.from_hash(structure) if structure)} end # Create object from extracted values GetSchedulesResponse.new(schedules) end |
.names ⇒ Object
A mapping from model property names to API property names
10 11 12 13 14 15 16 |
# File 'lib/gonebusy/models/get_schedules_response.rb', line 10 def self.names if @_hash.nil? @_hash = {} @_hash["schedules"] = "schedules" end @_hash end |