class TokyoMetro::Api::StationFacility::Info::BarrierFree::Facility::Escalator::Info

エスカレータの情報を扱うクラス

Attributes

direction[R]

@return [String] エスカレータの方向名(施設がエスカレータの場合に格納。上り、下り、上り・下りの3種類が存在)

is_available_to_wheel_chair[R]

@return [Boolean] 一般的な車いすが利用可能か否か

Public Class Methods

factory_for_seeding_this_class() click to toggle source
# File lib/tokyo_metro/api/station_facility/info/barrier_free/facility/escalator/info.rb, line 30
def self.factory_for_seeding_this_class
  factory_for_seeding_barrier_free_facility_escalator_info
end
factory_for_this_class() click to toggle source
# File lib/tokyo_metro/api/station_facility/info/barrier_free/facility/escalator/info.rb, line 26
def self.factory_for_this_class
  factory_for_generating_barrier_free_escalator_info_from_hash
end
new( id_urn , same_as , service_detail , place_name , located_area_name , remark , is_available_to_wheel_chair ) click to toggle source

Constructor

# File lib/tokyo_metro/api/station_facility/info/barrier_free/facility/escalator/info.rb, line 16
def initialize( id_urn , same_as , service_detail , place_name , located_area_name , remark , is_available_to_wheel_chair )
  super( id_urn , same_as , service_detail , place_name , located_area_name , remark )
  @is_available_to_wheel_chair = is_available_to_wheel_chair
end