Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 1.05 KB

Session.md

File metadata and controls

40 lines (34 loc) · 1.05 KB

ClerkBackend::Session

Properties

Name Type Description Notes
object String String representing the object's type. Objects of the same type share the same value.
id String
user_id String
client_id String
actor Object [optional]
status String
last_active_organization_id String [optional]
last_active_at Integer
expire_at Integer
abandon_at Integer
updated_at Integer Unix timestamp of last update.
created_at Integer Unix timestamp of creation.

Example

require 'clerk-sdk-ruby-backend'

instance = ClerkBackend::Session.new(
  object: null,
  id: null,
  user_id: null,
  client_id: null,
  actor: null,
  status: null,
  last_active_organization_id: null,
  last_active_at: null,
  expire_at: null,
  abandon_at: null,
  updated_at: null,
  created_at: null
)