Sha256: cf1747e31aea7f7948b12c3ede03e206ea0ad31cee64182f213b54e860ba1c73
Contents?: true
Size: 463 Bytes
Versions: 15
Compression:
Stored size: 463 Bytes
Contents
require_relative 'xml_verb' module Bandwidth module Voice # The Redirect verb is used to redirect the current XML execution to another URL class Redirect include XmlVerb def to_bxml(xml) xml.Redirect(compact_hash({ 'redirectUrl' => redirect_url, 'redirectMethod' => redirect_method, 'tag' => tag, 'username' => username, 'password' => password })) end end end end
Version data entries
15 entries across 15 versions & 1 rubygems