class Mdm::Enrollment::Account

Public Instance Methods

method() click to toggle source
# File lib/mdm/enrollment/service/account.rb, line 11
def method
  :get
end
path() click to toggle source
# File lib/mdm/enrollment/service/account.rb, line 7
def path
  '/account'
end
result() click to toggle source
# File lib/mdm/enrollment/service/account.rb, line 15
def result
  {
    server_name: client.response['server_name'],
    server_uuid: client.response['server_uuid'],
    facilitator_id: client.response['facilitator_id'],
    admin_id: client.response['admin_id'],
    org_name: client.response['org_name'],
    org_email: client.response['org_email'],
    org_phone: client.response['org_phone'],
    org_address: client.response['org_address'],
  }
end