Class: UserRolesClient

Inherits:
Object
  • Object
show all
Defined in:
lib/lockstep_sdk/clients/user_roles_client.rb

Instance Method Summary collapse

Constructor Details

#initialize(lockstepsdk) ⇒ UserRolesClient

Initialize the UserRolesClient class with a lockstepsdk instance.



24
25
26
# File 'lib/lockstep_sdk/clients/user_roles_client.rb', line 24

def initialize(lockstepsdk)
    @lockstepsdk = lockstepsdk
end

Instance Method Details

#query_user_roles(filter:, include_param:, order:, page_size:, page_number:) ⇒ Object

Queries User Roles for this account using the specified filtering, sorting, nested fetch, and pagination rules requested.



48
49
50
51
52
# File 'lib/lockstep_sdk/clients/user_roles_client.rb', line 48

def query_user_roles(filter:, include_param:, order:, page_size:, page_number:)
    path = "/api/v1/UserRoles/query"
    params = {:filter => filter, :include => include_param, :order => order, :pageSize => page_size, :pageNumber => page_number}
    @lockstepsdk.request(:get, path, nil, params)
end

#retrieve_user_role(id:, include_param:) ⇒ Object

Retrieves the User Role with this identifier.



34
35
36
37
38
# File 'lib/lockstep_sdk/clients/user_roles_client.rb', line 34

def retrieve_user_role(id:, include_param:)
    path = "/api/v1/UserRoles/#{id}"
    params = {:include => include_param}
    @lockstepsdk.request(:get, path, nil, params)
end