class PagSeguro::AccountCredentials

Attributes

email[RW]

The user email

token[RW]

The token related to the user

Public Class Methods

new(email, token) click to toggle source
# File lib/pagseguro/account_credentials.rb, line 9
def initialize(email, token)
  @email = email
  @token = token
end