## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / module Twilio module TwiML ## # TwiML for Faxes class FaxResponse < TwiML def initialize(**keyword_args) super(**keyword_args) @name = 'Response' yield(self) if block_given? end ## # Create a new element # action:: Receive action URL # method:: Receive action URL method # keyword_args:: additional attributes def receive(action: nil, method: nil, **keyword_args) append(Receive.new(action: action, method: method, **keyword_args)) end end ## # TwiML Verb class Receive < TwiML def initialize(**keyword_args) super(**keyword_args) @name = 'Receive' yield(self) if block_given? end end end end