class PagSeguro::Holder

Attributes

birthdate[RW]

Set the credit card holder bithdate.

document[RW]

Set the credit card holder document.

name[RW]

Set the credit card holder name.

phone[RW]

Get the sender phone.

Public Class Methods

new(name, birthdate) click to toggle source
# File lib/pagseguro/holder.rb, line 19
def initialize(name, birthdate)
  @name = name
  @birthdate = birthdate
end