class Realogy::Company
Public Instance Methods
addl_language_names()
click to toggle source
addlLanguageNames : [Hash] A collection of Company
names in other languages (non-English)
# File lib/realogy/app/models/realogy/company.rb, line 6 def addl_language_names self.dig_for_array("addlLanguageNames") end
addl_websites()
click to toggle source
addlWebSites : [Hash] A collection of websites associated with the Company
# File lib/realogy/app/models/realogy/company.rb, line 13 def addl_websites self.dig_for_array("addlWebSites") end
brand_code()
click to toggle source
brandCode : String The brand that the Company
is associated with
# File lib/realogy/app/models/realogy/company.rb, line 20 def brand_code self.dig_for_string("companySummary", "brandCode") end
can_do_commercial_business?()
click to toggle source
canDoCommercialBusiness : Boolean Will be 'true' if this company can do commercial business
# File lib/realogy/app/models/realogy/company.rb, line 27 def can_do_commercial_business? self.dig_for_boolean("companySummary", "canDoCommercialBusiness") end
commercial_company_name()
click to toggle source
commercialCompanyName : String commercialCompanyName of the company
# File lib/realogy/app/models/realogy/company.rb, line 34 def commercial_company_name self.dig_for_string("companySummary", "commercialCompanyName") end
company_id()
click to toggle source
company_summary()
click to toggle source
companySummary : Hash
# File lib/realogy/app/models/realogy/company.rb, line 47 def company_summary self.dig_for_hash("companySummary") end
is_nrt?()
click to toggle source
isNrt : Boolean This indicates whether it is Nrt Type or not
# File lib/realogy/app/models/realogy/company.rb, line 54 def is_nrt? self.dig_for_boolean("companySummary", "isNrt") end
last_updated()
click to toggle source
lastUpdateOn : DateTime The date/time that the Company
record was last updated in the system (UTC)
# File lib/realogy/app/models/realogy/company.rb, line 61 def last_updated self.dig_for_datetime("companySummary", "lastUpdateOn") end
media()
click to toggle source
media : [Hash]
# File lib/realogy/app/models/realogy/company.rb, line 67 def media self.dig_for_array("media") end
name()
click to toggle source
name : String Name of the Company
# File lib/realogy/app/models/realogy/company.rb, line 74 def name self.dig_for_string("companySummary", "name") end
programs()
click to toggle source
programs ; [Hash]
# File lib/realogy/app/models/realogy/company.rb, line 80 def programs self.dig_for_array("programs") end
rfg_id()
click to toggle source
website_url()
click to toggle source
websiteURL : String URL to the Company's website
# File lib/realogy/app/models/realogy/company.rb, line 94 def website_url self.dig_for_string("companySummary", "websiteURL") end