Sha256: 4056b2cb1b600ecc94d3fdfe0759f10e3f0eb46749015a3278c39a1fb865b365
Contents?: true
Size: 828 Bytes
Versions: 17
Compression:
Stored size: 828 Bytes
Contents
module Braintree class DocumentUpload include BaseModule include Braintree::Util::IdEquality module Kind IdentityDocument = "identity_document" EvidenceDocument = "evidence_document" PayoutInvoiceDocument = "payout_invoice_document" end attr_reader :content_type attr_reader :id attr_reader :kind attr_reader :name attr_reader :size def self.create(*args) Configuration.gateway.document_upload.create(*args) end def self.create!(*args) Configuration.gateway.document_upload.create!(*args) end def initialize(attributes) # :nodoc: set_instance_variables_from_hash(attributes) end class << self protected :new def _new(*args) # :nodoc: self.new(*args) end end end end
Version data entries
17 entries across 17 versions & 1 rubygems