Sha256: d67db493274d0ac05b45a4d3e2db2d74875c30437f9eea1373545e54da45fa22

Contents?: true

Size: 472 Bytes

Versions: 22

Compression:

Stored size: 472 Bytes

Contents

module PagSeguro
  class CreditCard
    include ActiveModel::Validations

    validates_presence_of :token, :installment, :holder, :billing_address

    # Set the token that represents the credit card.
    attr_accessor :token

    # Set the CPF document.
    attr_accessor :installment

    # Get the sender phone.
    attr_accessor :holder

    # Get the sender phone.
    attr_accessor :billing_address

    def initialize(token)
      @token = token
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
pagseguro-transparente-1.1.0 lib/pagseguro/credit_card.rb
pagseguro-transparente-1.0.1 lib/pagseguro/credit_card.rb
pagseguro-transparente-1.0.0 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.2.5 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.2.4 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.2.3 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.2.2 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.2.1 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.2.0 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.1.3 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.1.2 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.1.1 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.1.0 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.0.9 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.0.8 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.0.7 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.0.6 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.0.5 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.0.4 lib/pagseguro/credit_card.rb
pagseguro-transparente-0.0.3 lib/pagseguro/credit_card.rb