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