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:



1763
1764
1765
1766
1767
1768
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 1763

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



1774
1775
1776
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 1774

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



1783
1784
1785
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 1783

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