class Eve::Api::AccountStatus

Attributes

create_date[R]
logon_count[R]
logon_minutes[R]
paid_until[R]

Public Class Methods

client() click to toggle source
# File lib/eve/api/account_status.rb, line 12
def self.client
  @@xml_client
end
endpoint() click to toggle source
# File lib/eve/api/account_status.rb, line 8
def self.endpoint
  "account/AccountStatus.xml.aspx"
end
new(opts={}) click to toggle source
# File lib/eve/api/account_status.rb, line 16
def initialize(opts={})
  @paid_until    = opts["paidUntil"]
  @create_date   = opts["createDate"]
  @logon_count   = opts["logonCount"]
  @logon_minutes = opts["logonMinutes"]
end