class Wallets::Wallet

noinspection ALL

Attributes

current_balance[R]
id[R]
last_refresh[R]
linked[R]
object[R]
token[R]
wallet[R]

Public Class Methods

new(options = {}) click to toggle source
# File lib/Wallets.rb, line 10
def initialize(options = {})
  @id = get_arg(options, 'id')
  @object = get_arg(options, 'object')
  @wallet = get_arg(options, 'wallet')
  @token = get_arg(options, 'token')
  @linked = get_arg(options, 'linked')
  @current_balance = get_arg(options, 'current_balance')
  @last_refresh = get_arg(options, 'last_refreshed')
end