class RunaboveMe

Public Instance Methods

api_application(id) click to toggle source
# File lib/runabove.rb, line 117
def api_application(id)
  raw_call("get", "/me/api/application/#{id}")
end
api_applications() click to toggle source
# File lib/runabove.rb, line 113
def api_applications
  raw_call("get", "/me/api/application")
end
api_credential(id) click to toggle source
# File lib/runabove.rb, line 129
def api_credential(id)
  raw_call("get", "/me/api/credential/#{id}")
end
api_credential_application(id) click to toggle source
# File lib/runabove.rb, line 137
def api_credential_application(id)
  raw_call("get", "/me/api/credential/#{id}/application")
end
api_credentials() click to toggle source
# File lib/runabove.rb, line 125
def api_credentials
  raw_call("get", "/me/api/credential")
end
api_delete_application(id) click to toggle source
# File lib/runabove.rb, line 121
def api_delete_application(id)
  raw_call("delete", "/me/api/application/#{id}")
end
api_delete_credential(id) click to toggle source
# File lib/runabove.rb, line 133
def api_delete_credential(id)
  raw_call("delete", "/me/api/credential/#{id}")
end
ask_validation(data = { "validationType" => "sms" }) click to toggle source
# File lib/runabove.rb, line 141
def ask_validation(data = { "validationType" => "sms" })
  raw_call("post", "/me/askValidation", data)
end
balance() click to toggle source
# File lib/runabove.rb, line 145
def balance
  raw_call("get", "/me/balance")
end
bill(id) click to toggle source
# File lib/runabove.rb, line 153
def bill(id)
  raw_call("get", "/me/bill/#{id}")
end
bill_details(id) click to toggle source
# File lib/runabove.rb, line 157
def bill_details(id)
  raw_call("get", "/me/bill/#{id}/details")
end
bills() click to toggle source
# File lib/runabove.rb, line 149
def bills
  raw_call("get", "/me/bill")
end
info() click to toggle source

Get this object properties

@return [Hash] Get this object properties

# File lib/runabove.rb, line 109
def info
  raw_call("get", "/me")
end
lab(name) click to toggle source
# File lib/runabove.rb, line 165
def lab(name)
  raw_call("get", "/me/labs/#{name}")
end
labs() click to toggle source
# File lib/runabove.rb, line 161
def labs
  raw_call("get", "/me/labs")
end
usage() click to toggle source
# File lib/runabove.rb, line 169
def usage
  raw_call("get", "/me/usage")
end
validate(data) click to toggle source
# File lib/runabove.rb, line 173
def validate(data)
  raw_call("post", "/me/validate", data)
end