Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 1.47 KB

File metadata and controls

42 lines (36 loc) · 1.47 KB

Late::ConnectionLog

Properties

Name Type Description Notes
_id String [optional]
user_id String User who owns the connection (may be null for early OAuth failures) [optional]
profile_id String [optional]
account_id String The social account ID (present on successful connections and disconnects) [optional]
platform String [optional]
event_type String Type of connection event: connect_success, connect_failed, disconnect, reconnect_success, reconnect_failed [optional]
connection_method String How the connection was initiated [optional]
error ConnectionLogError [optional]
success ConnectionLogSuccess [optional]
context ConnectionLogContext [optional]
duration_ms Integer How long the operation took in milliseconds [optional]
metadata Object Additional metadata [optional]
created_at Time [optional]

Example

require 'late-sdk'

instance = Late::ConnectionLog.new(
  _id: null,
  user_id: null,
  profile_id: null,
  account_id: null,
  platform: null,
  event_type: null,
  connection_method: null,
  error: null,
  success: null,
  context: null,
  duration_ms: null,
  metadata: null,
  created_at: null
)