class Realogy::Listing

Public Instance Methods

active?() click to toggle source

isActive : Boolean Will be 'true' if this is an Active listing

# File lib/realogy/app/models/realogy/listing.rb, line 601
def active?
  self.dig_for_boolean("listingSummary", "isActive")
end
agents() click to toggle source

agents : [Hash] The agent(s) associated with the Listing

# File lib/realogy/app/models/realogy/listing.rb, line 904
def agents
  self.dig_for_array("listingSummary", "agents")
end
agricultural_property_number() click to toggle source

agriculturalPropertyNumber : String A unique identifier given for the agriculture property

# File lib/realogy/app/models/realogy/listing.rb, line 141
def agricultural_property_number
  self.dig_for_string("agriculturalPropertyNumber")
end
anchor_stores() click to toggle source

anchorStores : String The stores within the shopping complex that draw traffic to the location

# File lib/realogy/app/models/realogy/listing.rb, line 148
def anchor_stores
  self.dig_for_string("anchorStores")
end
annual_tax() click to toggle source

annualTax : Decimal The annualTax associated with the listing

# File lib/realogy/app/models/realogy/listing.rb, line 155
def annual_tax
  self.dig_for_decimal("annualTax")
end
available_floors() click to toggle source

availableFloors : Integer The total number of floors available within a property's Listing

# File lib/realogy/app/models/realogy/listing.rb, line 162
def available_floors
  self.dig_for_integer("availableFloors")
end
available_space() click to toggle source

availableSpace : Decimal The space available in the commercial property

# File lib/realogy/app/models/realogy/listing.rb, line 169
def available_space
  self.dig_for_decimal("availableSpace")
end
average_floor_size() click to toggle source

averageFloorSize : Decimal The size of the floor in an average. A calculation of the total building area divided by the number of stories or levels within the building

# File lib/realogy/app/models/realogy/listing.rb, line 177
def average_floor_size
  self.dig_for_decimal("averageFloorSize")
end
average_occupancy_rate() click to toggle source

averageOccupancyRate : Decimal The number of units in a building that have been rented out as compared to the total number of units in the building

# File lib/realogy/app/models/realogy/listing.rb, line 185
def average_occupancy_rate
  self.dig_for_decimal("averageOccupancyRate")
end
bay_depth() click to toggle source

bayDepth : String The distance from the front to the back of the bay

# File lib/realogy/app/models/realogy/listing.rb, line 192
def bay_depth
  self.dig_for_string("bayDepth")
end
building_area() click to toggle source

buildingArea : String BuildingArea of the property

# File lib/realogy/app/models/realogy/listing.rb, line 925
def building_area
  self.dig_for_string("listingSummary", "buildingArea")
end
building_class() click to toggle source

buildingClass : String The Subjective quality rating of buildings which indicates the competitive ability of each building to attract similar types of tenants

# File lib/realogy/app/models/realogy/listing.rb, line 200
def building_class
  self.dig_for_string("buildingClass")
end
by_appointment_only?() click to toggle source

isByAppointmentOnly : Boolean Will be 'true' if a prospective buyer or agent has to contact the Seller to schedule an appoinment to view the Property

# File lib/realogy/app/models/realogy/listing.rb, line 792
def by_appointment_only?
  self.dig_for_boolean("listingSummary", "isByAppointmentOnly")
end
call_to_show?() click to toggle source

isCallToShow : Boolean Will be 'true' if a prospective buyer or agent has to contact the Seller to schedule an appoinment to view the Property

# File lib/realogy/app/models/realogy/listing.rb, line 770
def call_to_show?
  self.dig_for_boolean("listingSummary", "isCallToShow")
end
cap_rate_percent() click to toggle source

capRatePercent : Decimal The capitalization rate on the property in percentage

# File lib/realogy/app/models/realogy/listing.rb, line 207
def cap_rate_percent
  self.dig_for_decimal("capRatePercent")
end
cash_flow() click to toggle source

cashFlow : Decimal The amount of cash flow the property brings in if its on sale

# File lib/realogy/app/models/realogy/listing.rb, line 214
def cash_flow
  self.dig_for_decimal("cashFlow")
end
ceiling_height() click to toggle source

ceilingHeight : String The distance from the floor to the lowest hanging ceiling member or hanging objects of the industrial work area

# File lib/realogy/app/models/realogy/listing.rb, line 222
def ceiling_height
  self.dig_for_string("ceilingHeight")
end
city() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 669
def city
  self.dig_for_string("listingSummary", "propertyAddress", "city")
end
clearance() click to toggle source

clearance : String The distance from the floor to the lowest hanging ceiling member or hanging objects, beams, joists or truss work descending down into a substantial portion of the industrial work area

# File lib/realogy/app/models/realogy/listing.rb, line 231
def clearance
  self.dig_for_string("clearance")
end
column_spacing() click to toggle source

columnSpacing : String The distance between posts or vertical supporting beams in an industrial building

# File lib/realogy/app/models/realogy/listing.rb, line 238
def column_spacing
  self.dig_for_string("columnSpacing")
end
common_area_factor() click to toggle source

commonAreaFactor : Decimal The shared spaces on a single floor, and within a building in its entirety

# File lib/realogy/app/models/realogy/listing.rb, line 245
def common_area_factor
  self.dig_for_decimal("commonAreaFactor")
end
company_names() click to toggle source

Array

# File lib/realogy/app/models/realogy/listing.rb, line 5
def company_names
  return nil if self.agents.nil?
  self.agents.map{|a| a.dig_for_string("office", "companyName")}.uniq
end
country() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 673
def country
  self.dig_for_string("listingSummary", "propertyAddress", "country")
end
country_code() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 693
def country_code
  self.dig_for_string("listingSummary", "propertyAddress", "countryCode")
end
default_photo_url() click to toggle source

defaultPhotoURL : String URL to the default photo for the property

# File lib/realogy/app/models/realogy/listing.rb, line 869
def default_photo_url
  self.dig_for_string("listingSummary", "defaultPhotoURL")
end
development() click to toggle source

development : String The name of the Development that the property is located in

# File lib/realogy/app/models/realogy/listing.rb, line 755
def development
  self.dig_for_string("listingSummary", "development")
end
district() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 677
def district
  self.dig_for_string("listingSummary", "propertyAddress", "district")
end
dock_height() click to toggle source

dockHeight : String The amount of distance the height of the slab at the bottom of an overhead door is from the ground level

# File lib/realogy/app/models/realogy/listing.rb, line 252
def dock_height
  self.dig_for_string("dockHeight")
end
down_payment() click to toggle source

downPayment : Decimal The down payment required by the current owner for a commercial listing

# File lib/realogy/app/models/realogy/listing.rb, line 259
def down_payment
  self.dig_for_decimal("downPayment")
end
floors() click to toggle source

floors : Array Collection of floors for the property

# File lib/realogy/app/models/realogy/listing.rb, line 557
def floors
  self.dig_for_array("floors")
end
formatted_address() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 705
def formatted_address
  self.dig_for_string("listingSummary", "propertyAddress", "formattedAddress")
end
full_bath() click to toggle source

fullBath : Integer Number of full baths in the property

# File lib/realogy/app/models/realogy/listing.rb, line 13
def full_bath
  self.dig_for_integer("fullBath")
end
fully_leased_income() click to toggle source

fullyLeasedIncome : Decimal The income that the owner currently receives if the property is fully leased

# File lib/realogy/app/models/realogy/listing.rb, line 266
def fully_leased_income
  self.dig_for_decimal("fullyLeasedIncome")
end
geocode_confidence_level() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 713
def geocode_confidence_level
  self.dig_for_string("listingSummary", "propertyAddress", "geoCodeConfidenceLevel")
end
geographic_regions() click to toggle source

geographicRegions : [Hash] A collection of geographic regions associated with the location of the property

# File lib/realogy/app/models/realogy/listing.rb, line 720
def geographic_regions
  self.dig_for_array("listingSummary", "geographicRegions")
end
gross_income() click to toggle source

grossIncome : Decimal The gross income that the owner currently receives if the property is fully leased

# File lib/realogy/app/models/realogy/listing.rb, line 273
def gross_income
  self.dig_for_decimal("grossIncome")
end
ground_level?() click to toggle source

isGroundLevel : Boolean The Industrial ground level of the property

# File lib/realogy/app/models/realogy/listing.rb, line 301
def ground_level?
  self.dig_for_boolean("isGroundLevel")
end
half_bath() click to toggle source

halfBath : Integer Number of half baths in the property

# File lib/realogy/app/models/realogy/listing.rb, line 20
def half_bath
  self.dig_for_integer("halfBath")
end
has_cross_docks?() click to toggle source

isCrossDocks : Boolean Indicates whether the property has the CrossDocks associated with it

# File lib/realogy/app/models/realogy/listing.rb, line 294
def has_cross_docks?
  self.dig_for_boolean("isCrossDocks")
end
has_open_house?() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 492
def has_open_house?
  self.open_house.present?
end
has_rail_access?() click to toggle source

hasRailAccess : Boolean Indicates whether the property has the industrial rail access to it

# File lib/realogy/app/models/realogy/listing.rb, line 280
def has_rail_access?
  self.dig_for_boolean("hasRailAccess")
end
has_sprinkler?() click to toggle source

isSprinkler : Boolean Indicates whether property has the industrial sprinkler to it

# File lib/realogy/app/models/realogy/listing.rb, line 308
def has_sprinkler?
  self.dig_for_boolean("isSprinkler")
end
hide_list_price?() click to toggle source

isHideListPrice : Boolean Will be 'true' if the list price is not supposed to be shown on consumer site

# File lib/realogy/app/models/realogy/listing.rb, line 784
def hide_list_price?
  self.dig_for_boolean("listingSummary", "isHideListPrice")
end
is_for_auction?() click to toggle source

isForAuction : Boolean Will be 'true' if this property is being sold by Auction

# File lib/realogy/app/models/realogy/listing.rb, line 777
def is_for_auction?
  self.dig_for_boolean("listingSummary", "isForAuction")
end
is_foreclosure?() click to toggle source

isForeClosure : Boolean Indicates if the property is for foreclosure

# File lib/realogy/app/models/realogy/listing.rb, line 876
def is_foreclosure?
  self.dig_for_boolean("listingSummary", "isForeClosure")
end
is_short_sale?() click to toggle source

isShortSale : Boolean Indicates if the property is for short sale

# File lib/realogy/app/models/realogy/listing.rb, line 883
def is_short_sale?
  self.dig_for_boolean("listingSummary", "isShortSale")
end
last_sold_on() click to toggle source

lastSoldOn : DateTime Timestamp on which the property is previously sold

# File lib/realogy/app/models/realogy/listing.rb, line 897
def last_sold_on
  self.dig_for_datetime("lastSoldOn")
end
last_updated() click to toggle source

lastUpdateOn : DateTime Timestamp when the listing was last updated at Realogy system

# File lib/realogy/app/models/realogy/listing.rb, line 890
def last_updated
  self.dig_for_datetime("listingSummary", "lastUpdateOn")
end
latitude() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 681
def latitude
  self.dig_for_decimal("listingSummary", "propertyAddress", "latitude")
end
lead_email() click to toggle source

TODO EXIST?

# File lib/realogy/app/models/realogy/listing.rb, line 134
def lead_email
  self.dig_for_string("leadEmail")
end
lease_term() click to toggle source

leaseTerm : String Indicates the Measurement. List price or Lease rate or rental value at which the sub unit is available

# File lib/realogy/app/models/realogy/listing.rb, line 322
def lease_term
  self.dig_for_string("leaseTerm")
end
lease_type() click to toggle source

leaseType : String The type of lease for a listing

# File lib/realogy/app/models/realogy/listing.rb, line 329
def lease_type
  self.dig_for_string("leaseType")
end
levels() click to toggle source

levels : Integer The number of levels (or storeys) in the Property

# File lib/realogy/app/models/realogy/listing.rb, line 62
def levels
  self.dig_for_integer("levels")
end
linked_office() click to toggle source

TODO EXIST?

# File lib/realogy/app/models/realogy/listing.rb, line 481
def linked_office
  self.dig_for_hash("linkedOffice")
end
list_price() click to toggle source

listPrice

# File lib/realogy/app/models/realogy/listing.rb, line 643
def list_price
  self.dig_for_hash("listingSummary", "listPrice")
end
list_price_amount() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 647
def list_price_amount
  self.dig_for_integer("listingSummary", "listPrice", "amount")
end
list_price_currency_code() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 651
def list_price_currency_code
  self.dig_for_string("listingSummary", "listPrice", "currencyCode")
end
list_price_in_usd() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 655
def list_price_in_usd
  self.dig_for_integer("listingSummary", "listPrice", "listPriceinUSD")
end
listed_on() click to toggle source

listedOn : String The date when the Listing became active

# File lib/realogy/app/models/realogy/listing.rb, line 623
def listed_on
  self.dig_for_string("listingSummary", "listedOn")
end
listing_id() click to toggle source

listingId : String Globally unique identifier assigned to a listing by Realogy

# File lib/realogy/app/models/realogy/listing.rb, line 594
def listing_id
  self.dig_for_string("listingSummary", "listingId")
end
listing_type() click to toggle source

listingType : String The type of Listings you are interested in. It can be ForSale, ForRent, ForSaleCommercial and ForLeaseCommercial.

# File lib/realogy/app/models/realogy/listing.rb, line 616
def listing_type
  self.dig_for_string("listingSummary", "listingType")
end
listing_url() click to toggle source

listingURL : String Public URL where the listing can be accessed

# File lib/realogy/app/models/realogy/listing.rb, line 748
def listing_url
  self.dig_for_string("listingSummary", "listingURL")
end
loan_payment() click to toggle source

loanPayment : Decimal The current loan payment value on the property being paid by the owner

# File lib/realogy/app/models/realogy/listing.rb, line 336
def loan_payment
  self.dig_for_decimal("loanPayment")
end
longitude() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 685
def longitude
  self.dig_for_decimal("listingSummary", "propertyAddress", "longitude")
end
lot_dimension() click to toggle source

lotDimension : String The dimensions of the Lot that the property is located in

# File lib/realogy/app/models/realogy/listing.rb, line 55
def lot_dimension
  self.dig_for_string("lotDimension")
end
lot_size() click to toggle source

lotSize : String Lot size of the property

# File lib/realogy/app/models/realogy/listing.rb, line 841
def lot_size
  self.dig_for_string("listingSummary", "lotSize")
end
mapping_allowed?() click to toggle source

isAllowMapping : Boolean Indicates whether or not the property address should be displayed on a map

# File lib/realogy/app/models/realogy/listing.rb, line 287
def mapping_allowed?
  self.dig_for_boolean("isAllowMapping")
end
max_contiguous_area() click to toggle source

maxContiguousArea : Decimal The largest amount of open space available in a commercial building

# File lib/realogy/app/models/realogy/listing.rb, line 343
def max_contiguous_area
  self.dig_for_decimal("maxContiguousArea")
end
maximum_lease_rate() click to toggle source

maximumLeaseRate : Decimal The Maximum Lease Rate associated with the listing

# File lib/realogy/app/models/realogy/listing.rb, line 350
def maximum_lease_rate
  self.dig_for_decimal("maximumLeaseRate")
end
media() click to toggle source

media : Array Collection of media for this property

# File lib/realogy/app/models/realogy/listing.rb, line 527
def media
  self.dig_for_array("media")
end
min_divisible_area() click to toggle source

minDivisibleArea : Decimal The minimum space which can be leased

# File lib/realogy/app/models/realogy/listing.rb, line 357
def min_divisible_area
  self.dig_for_decimal("minDivisibleArea")
end
minimum_lease_rate() click to toggle source

minimumLeaseRate : Decimal The Minimum Lease Rate associated with the listing

# File lib/realogy/app/models/realogy/listing.rb, line 364
def minimum_lease_rate
  self.dig_for_decimal("minimumLeaseRate")
end
mls_information() click to toggle source

mlsInformation : Array Collection of MLS information for the property

# File lib/realogy/app/models/realogy/listing.rb, line 578
def mls_information
  self.dig_for_array("mlsInformation")
end
mls_numbers() click to toggle source

mlsNumbers : [String] A collection of MLS numbers associated with the Listing

# File lib/realogy/app/models/realogy/listing.rb, line 727
def mls_numbers
  self.dig_for_array("listingSummary", "mlsNumbers")
end
net_operating_income() click to toggle source

netOperatingIncome : Decimal The potential rental income plus other income, less vacancy, credit losses, and operating expenses

# File lib/realogy/app/models/realogy/listing.rb, line 371
def net_operating_income
  self.dig_for_decimal("netOperatingIncome")
end
new_construction?() click to toggle source

isNewConstruction : Boolean Will be 'true' if the Property is a new construction

# File lib/realogy/app/models/realogy/listing.rb, line 741
def new_construction?
  self.dig_for_boolean("listingSummary", "isNewConstruction")
end
no_of_bedrooms() click to toggle source

noOfBedrooms : Integer Number of bedrooms in the property

# File lib/realogy/app/models/realogy/listing.rb, line 848
def no_of_bedrooms
  self.dig_for_integer("listingSummary", "noOfBedrooms")
end
number_of_ballrooms() click to toggle source

numberOfBallrooms : Integer The number of ballrooms in a property

# File lib/realogy/app/models/realogy/listing.rb, line 385
def number_of_ballrooms
  self.dig_for_integer("numberOfBallrooms")
end
number_of_conference_rooms() click to toggle source

numberOfConferenceRooms : Integer The number of conference rooms in a property

# File lib/realogy/app/models/realogy/listing.rb, line 392
def number_of_conference_rooms
  self.dig_for_integer("numberOfConferenceRooms")
end
number_of_docks() click to toggle source

numberOfDocks : Integer The Number of Docks associated with the property

# File lib/realogy/app/models/realogy/listing.rb, line 378
def number_of_docks
  self.dig_for_integer("numberOfDocks")
end
occupancy_rate() click to toggle source

occupancyRate : Integer The number of units in a building that have been rented out as compared to the total number of units in the building

# File lib/realogy/app/models/realogy/listing.rb, line 400
def occupancy_rate
  self.dig_for_integer("occupancyRate")
end
open_house() click to toggle source

openHouse : [Hash] Collection of OpenHouses for the property

# File lib/realogy/app/models/realogy/listing.rb, line 499
def open_house
  self.dig_for_array("openHouse")
end
parking_places() click to toggle source

parkingPlaces : Integer Number of parking places in the property

# File lib/realogy/app/models/realogy/listing.rb, line 48
def parking_places
  self.dig_for_integer("parkingPlaces")
end
parking_ratio() click to toggle source

parkingRatio : Decimal The ratio of available standard parking spaces to the gross leasable area of a property

# File lib/realogy/app/models/realogy/listing.rb, line 407
def parking_ratio
  self.dig_for_decimal("parkingRatio")
end
partial_bath() click to toggle source

partialBath : Integer Number of partial baths in the property

# File lib/realogy/app/models/realogy/listing.rb, line 41
def partial_bath
  self.dig_for_integer("partialBath")
end
pending?() click to toggle source

isPending : Boolean Will be 'true' if this is presently Under Contract (Pending)

# File lib/realogy/app/models/realogy/listing.rb, line 608
def pending?
  self.dig_for_boolean("listingSummary", "isPending")
end
photo_count() click to toggle source

photoCount : Integer Number of photos associated with listing

# File lib/realogy/app/models/realogy/listing.rb, line 630
def photo_count
  self.dig_for_integer("listingSummary", "photoCount")
end
postal_code() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 689
def postal_code
  self.dig_for_string("listingSummary", "propertyAddress", "postalCode")
end
power() click to toggle source

power : String The type and voltage of power applicable for the property

# File lib/realogy/app/models/realogy/listing.rb, line 414
def power
  self.dig_for_string("power")
end
price_per_area() click to toggle source

pricePerArea : Decimal The price per area of the property, this is generally the list price divided by the area

# File lib/realogy/app/models/realogy/listing.rb, line 421
def price_per_area
  self.dig_for_decimal("pricePerArea")
end
price_upon_request?() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 659
def price_upon_request?
  self.dig_for_boolean("listingSummary", "listPrice", "isPriceUponRequest")
end
property_address() click to toggle source

propertyAddress

# File lib/realogy/app/models/realogy/listing.rb, line 665
def property_address
  self.dig_for_hash("listingSummary", "propertyAddress")
end
property_category() click to toggle source

propertyCategory : String Category of property

# File lib/realogy/app/models/realogy/listing.rb, line 799
def property_category
  self.dig_for_string("listingSummary", "propertyCategory")
end
property_features() click to toggle source

propertyFeatures : Array Collection of features for the property

# File lib/realogy/app/models/realogy/listing.rb, line 488
def property_features
  self.dig_for_array("propertyFeatures")
end
property_fees() click to toggle source

propertyFees : Array Collection of property fees

# File lib/realogy/app/models/realogy/listing.rb, line 513
def property_fees
  self.dig_for_array("propertyFees")
end
property_floors() click to toggle source

propertyFloors : Array Collection of property floors for the property

# File lib/realogy/app/models/realogy/listing.rb, line 550
def property_floors
  self.dig_for_array("propertyFloors")
end
property_name() click to toggle source

propertyName : String Name of Property

# File lib/realogy/app/models/realogy/listing.rb, line 827
def property_name
  self.dig_for_string("listingSummary", "propertyName")
end
property_rooms() click to toggle source

propertyRooms : Array Collection of propertyRooms for the property

# File lib/realogy/app/models/realogy/listing.rb, line 543
def property_rooms
  self.dig_for_array("propertyRooms")
end
property_style() click to toggle source

propertyStyle : String Property Style

# File lib/realogy/app/models/realogy/listing.rb, line 813
def property_style
  self.dig_for_string("listingSummary", "propertyStyle")
end
property_type() click to toggle source

propertyType : String Property Type

# File lib/realogy/app/models/realogy/listing.rb, line 806
def property_type
  self.dig_for_string("listingSummary", "propertyType")
end
property_use() click to toggle source

propertyUse : String Property Use information of the property

# File lib/realogy/app/models/realogy/listing.rb, line 820
def property_use
  self.dig_for_string("listingSummary", "propertyUse")
end
provider_category() click to toggle source

providerCategory : String The category of the provider of the listing information

# File lib/realogy/app/models/realogy/listing.rb, line 111
def provider_category
  self.dig_for_string("providerCategory")
end
provider_key() click to toggle source

providerKey : String The unique identifier for the listing in the provider's system

# File lib/realogy/app/models/realogy/listing.rb, line 125
def provider_key
  self.dig_for_string("providerKey")
end
provider_name() click to toggle source

providerName : String The name of the provider of the listing information

# File lib/realogy/app/models/realogy/listing.rb, line 104
def provider_name
  self.dig_for_string("providerName")
end
provider_url() click to toggle source

providerURL : String The URL of the provider of the listing information

# File lib/realogy/app/models/realogy/listing.rb, line 118
def provider_url
  self.dig_for_string("providerURL")
end
quarter_bath() click to toggle source

quarterBath : Integer Number of quarter baths in the property

# File lib/realogy/app/models/realogy/listing.rb, line 27
def quarter_bath
  self.dig_for_integer("quarterBath")
end
remarks() click to toggle source

remarks : Array Collection of remarks for the property

# File lib/realogy/app/models/realogy/listing.rb, line 506
def remarks
  self.dig_for_array("remarks")
end
rental_frequency() click to toggle source

rentalFrequency : String The frequency at which the Rental amount is to be paid

# File lib/realogy/app/models/realogy/listing.rb, line 762
def rental_frequency
  self.dig_for_string("listingSummary", "rentalFrequency")
end
rfg_listing_id() click to toggle source

RFGListingId : String A short unique identifier assigned to the Listing by Realogy

# File lib/realogy/app/models/realogy/listing.rb, line 734
def rfg_listing_id
  self.dig_for_string("listingSummary", "RFGListingId")
end
schedule_income() click to toggle source

scheduleIncome : Decimal The gross income that would be collected from a rental property with all units 100% occupied and rented

# File lib/realogy/app/models/realogy/listing.rb, line 428
def schedule_income
  self.dig_for_decimal("scheduleIncome")
end
schools() click to toggle source

TODO blank strings in returned hash

# File lib/realogy/app/models/realogy/listing.rb, line 536
def schools
  self.dig_for_array("schools")
end
show_address_on_internet?() click to toggle source

isShowAddressOnInternet : Boolean Will be 'true' if the property address shall be displayed on Internet

# File lib/realogy/app/models/realogy/listing.rb, line 918
def show_address_on_internet?
  self.dig_for_boolean("listingSummary", "isShowAddressOnInternet")
end
square_footage() click to toggle source

squareFootage : Double Square Footage of the property

# File lib/realogy/app/models/realogy/listing.rb, line 862
def square_footage
  self.dig_for_decimal("listingSummary", "squareFootage")
end
state_province() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 697
def state_province
  self.dig_for_string("listingSummary", "propertyAddress", "stateProvince")
end
state_province_code() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 709
def state_province_code
  self.dig_for_string("listingSummary", "propertyAddress", "stateProvinceCode")
end
street_address() click to toggle source
# File lib/realogy/app/models/realogy/listing.rb, line 701
def street_address
  self.dig_for_string("listingSummary", "propertyAddress", "streetAddress")
end
sub_lease?() click to toggle source

isSubLease : Boolean The value indicating whether the listing is a sublease

# File lib/realogy/app/models/realogy/listing.rb, line 315
def sub_lease?
  self.dig_for_boolean("isSubLease")
end
sub_units() click to toggle source

subUnits : Array Collection of sub units for the property

# File lib/realogy/app/models/realogy/listing.rb, line 564
def sub_units
  self.dig_for_array("subUnits")
end
suite_apartment_name() click to toggle source

suiteApartmentName : String The Suite Apartment Name associated with the listing

# File lib/realogy/app/models/realogy/listing.rb, line 435
def suite_apartment_name
  self.dig_for_string("power")
end
suites() click to toggle source

suites : Array Collection of sub units/suites for the property

# File lib/realogy/app/models/realogy/listing.rb, line 571
def suites
  self.dig_for_array("suites")
end
tax_id_number() click to toggle source

taxIdNumber : String The Tax Id Number associated with the listing

# File lib/realogy/app/models/realogy/listing.rb, line 442
def tax_id_number
  self.dig_for_string("taxIdNumber")
end
tax_information() click to toggle source

taxInformation : Array Tax information associated with the Property

# File lib/realogy/app/models/realogy/listing.rb, line 585
def tax_information
  self.dig_for_array("taxInformation")
end
tax_roll_number() click to toggle source

taxRollNumber : String An identifier for a property within a given jurisdiction, such as a city or county, that can be taxed

# File lib/realogy/app/models/realogy/listing.rb, line 90
def tax_roll_number
  self.dig_for_string("taxRollNumber")
end
tax_year() click to toggle source

taxYear : Integer The year in which tax was calculated

# File lib/realogy/app/models/realogy/listing.rb, line 449
def tax_year
  self.dig_for_integer("taxYear")
end
team() click to toggle source

team : Hash The team associated with the Listing

# File lib/realogy/app/models/realogy/listing.rb, line 911
def team
  self.dig_for_hash("listingSummary", "team")
end
three_quarter_bath() click to toggle source

threeQuarterBath : Integer Number of three quarter baths in the property

# File lib/realogy/app/models/realogy/listing.rb, line 34
def three_quarter_bath
  self.dig_for_integer("threeQuarterBath")
end
total_acres() click to toggle source

totalAcres : String Total Acres of the property

# File lib/realogy/app/models/realogy/listing.rb, line 855
def total_acres
  self.dig_for_string("listingSummary", "totalAcres")
end
total_bath() click to toggle source

totalBath : Integer Number of partial baths in the property

# File lib/realogy/app/models/realogy/listing.rb, line 834
def total_bath
  self.dig_for_integer("listingSummary", "totalBath")
end
total_expenses() click to toggle source

totalExpenses : Decimal The Total Expenses associated with the listing

# File lib/realogy/app/models/realogy/listing.rb, line 456
def total_expenses
  self.dig_for_decimal("totalExpenses")
end
total_rooms() click to toggle source

totalRooms : Integer Number of total rooms in the property

# File lib/realogy/app/models/realogy/listing.rb, line 83
def total_rooms
  self.dig_for_integer("totalRooms")
end
total_units() click to toggle source

totalUnits : Integer The Total Units associated with the listing

# File lib/realogy/app/models/realogy/listing.rb, line 463
def total_units
  self.dig_for_integer("totalUnits")
end
turning_radius() click to toggle source

turningRadius : String The available turning radius available in the industrial property. Turning radius is the size of smallest possible circular turn a vehicle is able to take

# File lib/realogy/app/models/realogy/listing.rb, line 471
def turning_radius
  self.dig_for_string("turningRadius")
end
video_count() click to toggle source

videoCount : Integer Number of videos associated with listing

# File lib/realogy/app/models/realogy/listing.rb, line 637
def video_count
  self.dig_for_integer("listingSummary", "videoCount")
end
websites() click to toggle source

webSites : Array Collection of websites for the property

# File lib/realogy/app/models/realogy/listing.rb, line 520
def websites
  self.dig_for_array("webSites")
end
year_built() click to toggle source

yearBuilt : String The year in which the property was built

# File lib/realogy/app/models/realogy/listing.rb, line 69
def year_built
  self.dig_for_integer("yearBuilt")
end
year_renovated() click to toggle source

yearRenovated : String The year in which the property was last renovated

# File lib/realogy/app/models/realogy/listing.rb, line 76
def year_renovated
  self.dig_for_integer("yearRenovated")
end
zoning() click to toggle source

zoning : String Property in terms of permitted usage of land based on mapped zones by the authorities

# File lib/realogy/app/models/realogy/listing.rb, line 97
def zoning
  self.dig_for_string("zoning")
end