Class: Telnyx::Resources::Seti

Inherits:
Object
  • Object
show all
Defined in:
lib/telnyx/resources/seti.rb

Instance Method Summary collapse

Constructor Details

#initialize(client:) ⇒ Seti

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Seti.

Parameters:



31
32
33
# File 'lib/telnyx/resources/seti.rb', line 31

def initialize(client:)
  @client = client
end

Instance Method Details

#retrieve_black_box_test_results(filter: nil, request_options: {}) ⇒ Telnyx::Models::SetiRetrieveBlackBoxTestResultsResponse

Returns the results of the various black box tests

Parameters:

Returns:

See Also:



17
18
19
20
21
22
23
24
25
26
# File 'lib/telnyx/resources/seti.rb', line 17

def retrieve_black_box_test_results(params = {})
  parsed, options = Telnyx::SetiRetrieveBlackBoxTestResultsParams.dump_request(params)
  @client.request(
    method: :get,
    path: "seti/black_box_test_results",
    query: parsed,
    model: Telnyx::Models::SetiRetrieveBlackBoxTestResultsResponse,
    options: options
  )
end