class BloomApi::Individual

A class representing an individual provider

Public Instance Methods

credential() click to toggle source

@return [String] the provider’s professional credential

# File lib/bloom_api/individual.rb, line 6
def credential
  @raw_provider['credential']
end
first_name() click to toggle source

@return [String] the provider’s first name

# File lib/bloom_api/individual.rb, line 11
def first_name
  @raw_provider['first_name']
end
gender() click to toggle source

@return [String] the provider’s gender

# File lib/bloom_api/individual.rb, line 16
def gender
  @raw_provider['gender']
end
last_name() click to toggle source

@return [String] the provider’s last name

# File lib/bloom_api/individual.rb, line 21
def last_name
  @raw_provider['last_name']
end
middle_name() click to toggle source

@return [String] the provider’s middle name

# File lib/bloom_api/individual.rb, line 26
def middle_name
  @raw_provider['middle_name']
end
name_prefix() click to toggle source

@return [String] the providers name prefix (Mr., Ms., etc.)

# File lib/bloom_api/individual.rb, line 31
def name_prefix
  @raw_provider['name_prefix']
end
name_suffix() click to toggle source

@return [String] the provider’s name suffix (Jr., Sr., Etc.)

# File lib/bloom_api/individual.rb, line 36
def name_suffix
  @raw_provider['name_suffix']
end
other_credential() click to toggle source

@return [String] an additional professional credential

# File lib/bloom_api/individual.rb, line 41
def other_credential
  @raw_provider['other_credential']
end
other_first_name() click to toggle source

@return [String] an alternate first name for the provider

# File lib/bloom_api/individual.rb, line 46
def other_first_name
  @raw_provider['other_first_name']
end
other_last_name() click to toggle source

@return [String] an alternate last name for the provider

# File lib/bloom_api/individual.rb, line 51
def other_last_name
  @raw_provider['other_last_name']
end
other_last_name_type_code() click to toggle source

@return [String]

a code describing the purpose of the provider's alternate
last name. Possible values are:
* former name
* professional name
* doing business as
* former legal business name
* other name
# File lib/bloom_api/individual.rb, line 63
def other_last_name_type_code
  @raw_provider['provider_other_last_name_type_code']
end
other_middle_name() click to toggle source

@return [String] the provider’s alternate last name

# File lib/bloom_api/individual.rb, line 68
def other_middle_name
  @raw_provider['other_middle_name']
end
other_name_prefix() click to toggle source

@return [String] the provider’s alternate name prefix

# File lib/bloom_api/individual.rb, line 73
def other_name_prefix
  @raw_provider['other_name_prefix']
end
other_name_suffix() click to toggle source

@return [String] the provider’s altername name suffix

# File lib/bloom_api/individual.rb, line 78
def other_name_suffix
  @raw_provider['other_name_suffix']
end