Class: BandwidthIris::AlternateEndUserIdentity
- Inherits:
-
Object
- Object
- BandwidthIris::AlternateEndUserIdentity
show all
- Extended by:
- ClientWrapper
- Includes:
- ApiItem
- Defined in:
- lib/bandwidth-iris/aeui.rb
Class Method Summary
collapse
wrap_client_arg
Methods included from ApiItem
#[], #[]=, #initialize, #to_data
Class Method Details
14
15
16
17
|
# File 'lib/bandwidth-iris/aeui.rb', line 14
def self.get_alternate_caller_information(client, acid)
response = client.make_request(:get, "#{client.concat_account_path(AEUI_PATH)}/#{acid}")
return response[0][:alternate_end_user_identifier]
end
|
8
9
10
11
|
# File 'lib/bandwidth-iris/aeui.rb', line 8
def self.get_alternate_end_user_information(client, query=nil)
response = client.make_request(:get, "#{client.concat_account_path(AEUI_PATH)}", query)
return response[0]
end
|