module

Twilio

Constants

Log = ::Log.for("Twilio")
VERSION = {{ (`shards version /tmp/tmp.JEIpDc/src/src`).chomp.stringify }}

Class methods

configure

Return the default Configuration object.

Source
configure

Customize default settings for the SDK using block.

Twilio.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end
Source
next_page(list_response : T, api_client : Twilio::ApiClient = Twilio::ApiClient.default) : T | Nil forall T

Get next page of a list endpoint response

api = Twilio::CallsApi.new

page : Twilio::ListCallResponse = api.list_call

# Get next page of results
next_page : Twilio::ListCallResponse? = Twilio.next_page(page)

pp page
pp next_page
Source

Nested types