Class: SignalWire::REST::Namespaces::VoiceLogs
Overview
Instance Method Summary
collapse
#initialize
Instance Method Details
#get(log_id) ⇒ Object
15
|
# File 'lib/signalwire/rest/namespaces/logs.rb', line 15
def get(log_id) = @http.get(_path(log_id))
|
#list(**params) ⇒ Object
14
|
# File 'lib/signalwire/rest/namespaces/logs.rb', line 14
def list(**params) = @http.get(@base_path, params.empty? ? nil : params)
|
#list_events(log_id, **params) ⇒ Object
17
18
19
|
# File 'lib/signalwire/rest/namespaces/logs.rb', line 17
def list_events(log_id, **params)
@http.get(_path(log_id, 'events'), params.empty? ? nil : params)
end
|