Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1001 Bytes

Client.md

File metadata and controls

34 lines (28 loc) · 1001 Bytes

ClerkHttpClient::Client

Properties

Name Type Description Notes
object String String representing the object's type. Objects of the same type share the same value.
id String String representing the identifier of the session.
session_ids Array<String>
sessions Array<Session>
sign_in_id String
sign_up_id String
last_active_session_id String Last active session_id.
updated_at Integer Unix timestamp of last update.
created_at Integer Unix timestamp of creation.

Example

require 'clerk-http-client'

instance = ClerkHttpClient::Client.new(
  object: null,
  id: null,
  session_ids: null,
  sessions: null,
  sign_in_id: null,
  sign_up_id: null,
  last_active_session_id: null,
  updated_at: null,
  created_at: null
)