class LeanTesting::UserHandler

Attributes

organizations[R]

Public Class Methods

new(origin) click to toggle source
Calls superclass method LeanTesting::EntityHandler::new
# File lib/Handler/User/UserHandler.rb, line 5
def initialize(origin)
        super

        @organizations = UserOrganizationsHandler.new(origin)
end

Public Instance Methods

getInformation() click to toggle source
# File lib/Handler/User/UserHandler.rb, line 11
def getInformation
        return (APIRequest.new(@origin, '/v1/me', 'GET')).exec
end