class Realogy::Team

Public Instance Methods

addl_emails() click to toggle source

addlEmails : [Hash] Additional emails of team

# File lib/realogy/app/models/realogy/team.rb, line 19
def addl_emails
  self.dig_for_array("addlEmails")
end
addl_language_names() click to toggle source

addlLanguageNames : [Hash] Additional languages spoken by the team

# File lib/realogy/app/models/realogy/team.rb, line 26
def addl_language_names
  self.dig_for_array("addlLanguageNames")
end
addl_phone_numbers() click to toggle source

addlPhoneNumbers : [Hash] Additional phone numbers of team

# File lib/realogy/app/models/realogy/team.rb, line 12
def addl_phone_numbers
  self.dig_for_array("addlPhoneNumbers")
end
addl_websites() click to toggle source

addlWebSites : [Hash] A collection of websites associated with the Team

# File lib/realogy/app/models/realogy/team.rb, line 33
def addl_websites
  self.dig_for_array("addlWebSites")
end
awards() click to toggle source

awards : [Hash]

# File lib/realogy/app/models/realogy/team.rb, line 5
def awards
  self.dig_for_array("awards")
end
email_address() click to toggle source

emailAddress : String Email address of the team

# File lib/realogy/app/models/realogy/team.rb, line 40
def email_address
  self.dig_for_string("emailAddress")
end
last_updated() click to toggle source

lastUpdateOn : Datetime The date/time in UTC when the team was last updated

# File lib/realogy/app/models/realogy/team.rb, line 47
def last_updated
  self.dig_for_datetime("lastUpdateOn")
end
media() click to toggle source

media : [Hash]

# File lib/realogy/app/models/realogy/team.rb, line 53
def media
  self.dig_for_array("media")
end
members() click to toggle source

members : Arrau Agents who are part of the Team

# File lib/realogy/app/models/realogy/team.rb, line 60
def members 
  self.dig_for_array("members")
end
name() click to toggle source

name : String Display Name of the Team“

# File lib/realogy/app/models/realogy/team.rb, line 67
def name
  self.dig_for_string("name")
end
office() click to toggle source

office

# File lib/realogy/app/models/realogy/team.rb, line 73
def office
  self.dig_for_hash("office")
end
phone_number() click to toggle source

phoneNumber : String Phone Number of the team

# File lib/realogy/app/models/realogy/team.rb, line 80
def phone_number
  self.dig_for_string("phoneNumber")
end
remarks() click to toggle source

remarks : [Hash] Remarks of team

# File lib/realogy/app/models/realogy/team.rb, line 87
def remarks
  self.dig_for_array("remarks")
end
rfg_team_id() click to toggle source

RFGTeamID : String A short unique identifier assigned to the Team by Realogy

# File lib/realogy/app/models/realogy/team.rb, line 94
def rfg_team_id
  self.dig_for_string("RFGTeamID")
end
team_id() click to toggle source

teamId : String Globally unique identifier assigned to a Team by Realogy

# File lib/realogy/app/models/realogy/team.rb, line 101
def team_id
  self.dig_for_string("teamId")
end
team_summary() click to toggle source

teamSummary : Hash

# File lib/realogy/app/models/realogy/team.rb, line 114
def team_summary
  self.dig_for_hash("teamSummary")
end
team_type() click to toggle source

type : String Display Type of the Team

# File lib/realogy/app/models/realogy/team.rb, line 108
def team_type 
  RFGTeamIDdig_for_string("type")
end
website_url() click to toggle source

websiteUrl : String Website URL of the team

# File lib/realogy/app/models/realogy/team.rb, line 121
def website_url
  self.dig_for_string("websiteUrl")
end