Sha256: dbc5a0ff17e361f14369c273cae123939492e82ab0b3648ff689ece14d2f156d

Contents?: true

Size: 499 Bytes

Versions: 22

Compression:

Stored size: 499 Bytes

Contents

module PagSeguro
  class Holder
    include ActiveModel::Validations

    validates_presence_of :name, :birthdate, :document, :phone

    # Set the credit card holder name.
    attr_accessor :name

    # Set the credit card holder bithdate.
    attr_accessor :birthdate

    # Set the credit card holder document.
    attr_accessor :document

    # Get the sender phone.
    attr_accessor :phone

    def initialize(name, birthdate)
      @name = name
      @birthdate = birthdate
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

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