Sha256: 3fa6bf91e307e97e6915cdc62d75a5483c2ebe6dae1e5a033550c4264f8742f9

Contents?: true

Size: 543 Bytes

Versions: 3

Compression:

Stored size: 543 Bytes

Contents

# encoding: utf-8

module Adhearsion
  module Rayo
    module Component
      class ReceiveFax < ComponentNode
        register :receivefax, :fax

        class Fax < RayoNode
          register :fax, :fax_complete

          attribute :url, String
          attribute :resolution, String
          attribute :pages, Integer
          attribute :size, Integer
        end

        class Complete
          class Finish < Event::Complete::Reason
            register :finish, :fax_complete
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
adhearsion-3.0.0.rc1 lib/adhearsion/rayo/component/receive_fax.rb
adhearsion-3.0.0.beta2 lib/adhearsion/rayo/component/receive_fax.rb
adhearsion-3.0.0.beta1 lib/adhearsion/rayo/component/receive_fax.rb