Method: Twilio::TwiML::Client#initialize
- Defined in:
- lib/twilio-ruby/twiml/voice_response.rb
#initialize(identity: nil, **keyword_args) {|_self| ... } ⇒ Client
Returns a new instance of Client.
1967 1968 1969 1970 1971 1972 |
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 1967 def initialize(identity: nil, **keyword_args) super(**keyword_args) @name = 'Client' @value = identity unless identity.nil? yield(self) if block_given? end |