Class: ActiveInTime::FacilityType

Inherits:
Object
  • Object
show all
Defined in:
lib/ait_connect/facility_type.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(active_in_time, json) ⇒ FacilityType

Returns a new instance of FacilityType.



5
6
7
# File 'lib/ait_connect/facility_type.rb', line 5

def initialize(active_in_time, json)
  @active_in_time, @json = active_in_time, json
end

Instance Attribute Details

#jsonObject (readonly)

Returns the value of attribute json.



3
4
5
# File 'lib/ait_connect/facility_type.rb', line 3

def json
  @json
end

Instance Method Details

#facility_type_categoryObject



22
23
24
25
# File 'lib/ait_connect/facility_type.rb', line 22

def facility_type_category
  return nil if !@json["facility_type_category"]
  ActiveInTime::FacilityTypeCategory.new(@active_in_time, @json["facility_type_category"])
end

#idObject

def fetch

@json = @active_in_time.get("timetables/#{id}")["timetable"]
self

end



14
15
16
# File 'lib/ait_connect/facility_type.rb', line 14

def id
  @json["id"]
end

#nameObject



18
19
20
# File 'lib/ait_connect/facility_type.rb', line 18

def name
  @json["name"]
end