class PagSeguro::Sender

Attributes

document[RW]

Set the CPF document.

email[RW]

Set the sender e-mail.

hash_id[RW]

Set the hash identifier.

name[RW]

Set the sender name.

phone[RW]

Get the sender phone.

Public Class Methods

new(options = {}) click to toggle source
# File lib/pagseguro/sender.rb, line 26
def initialize(options = {})
  @email = options[:email]
  @name = options[:name]
  @hash_id = options[:hash_id]
end