Sha256: a77b14bcf7823ca285498d22b6f9677c3cf63d317102b13c05c14e8c763874d1

Contents?: true

Size: 465 Bytes

Versions: 6

Compression:

Stored size: 465 Bytes

Contents

module Braintree
  class Dispute
    class Evidence # :nodoc:
      include BaseModule

      attr_reader :comment
      attr_reader :created_at
      attr_reader :id
      attr_reader :sent_to_processor_at
      attr_reader :url

      def initialize(attributes)
        set_instance_variables_from_hash attributes unless attributes.nil?
        @sent_to_processor_at = Date.parse(sent_to_processor_at) unless sent_to_processor_at.nil?
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
braintree-2.81.0 lib/braintree/dispute/evidence.rb
braintree-2.80.1 lib/braintree/dispute/evidence.rb
braintree-2.80.0 lib/braintree/dispute/evidence.rb
braintree-2.79.0 lib/braintree/dispute/evidence.rb
braintree-2.78.0 lib/braintree/dispute/evidence.rb
braintree-2.77.0 lib/braintree/dispute/evidence.rb