Class: Twilio::TwiML::Client

Inherits:
TwiML
  • Object
show all
Defined in:
lib/twilio-ruby/twiml/voice_response.rb

Overview

<Client> TwiML Noun

Instance Attribute Summary

Attributes inherited from TwiML

#name

Instance Method Summary collapse

Methods inherited from TwiML

#add_child, #add_text, #append, #comment, to_lower_camel_case, #to_s, #xml

Constructor Details

#initialize(identity: nil, **keyword_args) {|_self| ... } ⇒ Client

Returns a new instance of Client.

Yields:

  • (_self)

Yield Parameters:



1759
1760
1761
1762
1763
1764
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 1759

def initialize(identity: nil, **keyword_args)
  super(**keyword_args)
  @name = 'Client'
  @value = identity unless identity.nil?
  yield(self) if block_given?
end

Instance Method Details

#identity(client_identity, **keyword_args) ⇒ Object

Create a new <Identity> element

client_identity

Identity of the client to dial

keyword_args

additional attributes



1770
1771
1772
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 1770

def identity(client_identity, **keyword_args)
  append(Identity.new(client_identity, **keyword_args))
end

#parameter(name: nil, value: nil, **keyword_args) ⇒ Object

Create a new <Parameter> element

name

The name of the custom parameter

value

The value of the custom parameter

keyword_args

additional attributes



1779
1780
1781
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 1779

def parameter(name: nil, value: nil, **keyword_args)
  append(Parameter.new(name: name, value: value, **keyword_args))
end