class PagSeguro::Holder

Attributes

billing_address[R]

Get the billing address

birth_date[RW]

Set the birth date.

document[R]

Get document info.

name[RW]

Set the name.

phone[R]

Get the phone.

Public Instance Methods

billing_address=(billing_address) click to toggle source

Set the billing address

# File lib/pagseguro/holder.rb, line 32
def billing_address=(billing_address)
  @billing_address = ensure_type(Address, billing_address)
end
document=(document) click to toggle source

Set the document.

# File lib/pagseguro/holder.rb, line 22
def document=(document)
  @document = ensure_type(Document, document)
end
phone=(phone) click to toggle source

Set the phone.

# File lib/pagseguro/holder.rb, line 27
def phone=(phone)
  @phone = ensure_type(Phone, phone)
end