Method: BloomApi::Provider#other_identifiers
- Defined in:
- lib/bloom_api/provider.rb
#other_identifiers ⇒ Array
Returns A list of alternate identifiers for the provider.
45 46 47 48 49 |
# File 'lib/bloom_api/provider.rb', line 45 def other_identifiers unless @raw_provider['other_identifiers'].nil? @raw_provider['other_identifiers'].collect { |i| BloomApi::Identifier.new(i) } end end |