class RealPage::Request::GetFloorPlanList

Retrieve floor plan information for a specific property.

Required intializer parameters:

@param pmc_id [String] the unique identifier for the property management

company in RealPage

@param site_id [String] the unique identifier for the property in RealPage

Optional initializer parameters:

@param list_criteria [Array<RealPage::Parameter::ListCriterion>] the query

criteria, see GetFloorPlanList::Name for the allowed values for
ListCriterion#name

Attributes

list_criteria[R]

Private Instance Methods

after_initialize(params) click to toggle source
# File lib/real_page/request/get_floor_plan_list.rb, line 32
def after_initialize(params)
  @list_criteria = params[:list_criteria] || []
end
parser() click to toggle source
# File lib/real_page/request/get_floor_plan_list.rb, line 40
def parser
  DocumentParser::FloorPlanObject.new
end
sections() click to toggle source
# File lib/real_page/request/get_floor_plan_list.rb, line 36
def sections
  [RequestSection::ListCriteria.new(list_criteria: list_criteria)]
end