for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
module GlipSdk
module REST
class Persons
def initialize(rc_sdk)
@api = rc_sdk
end
def get(opts = {})
if opts.key? :personId
return @api.http.get "glip/persons/#{opts[:personId]}"
nil