class LibLynxAPI::Identification

Public Class Methods

new(client) click to toggle source
# File lib/liblynx-api/client.rb, line 229
def initialize(client)
  @client = client
end

Public Instance Methods

create(body = {}) click to toggle source

create a new identification resource to try and identify an account to link a new session with

@param body: the object to pass as the request payload

# File lib/liblynx-api/client.rb, line 236
def create(body = {})
  @client.identification.create(body)
end
info(identification_identity) click to toggle source

retrieve a single identification object

@param identification_identity:

# File lib/liblynx-api/client.rb, line 243
def info(identification_identity)
  @client.identification.info(identification_identity)
end