class Trusona::Services::DeviceUserBindingsService

Device User Bindings Service

Public Class Methods

new( client: Trusona::Api::HTTPClient.new(Trusona.config.api_host), mapper: Trusona::Mappers::DeviceUserBindingMapper.new ) click to toggle source
# File lib/trusona/services/device_user_bindings_service.rb, line 8
def initialize(
  client: Trusona::Api::HTTPClient.new(Trusona.config.api_host),
  mapper: Trusona::Mappers::DeviceUserBindingMapper.new
)
  @client = client
  @mapper = mapper
  @resource_path = '/api/v2/user_devices'
end