kombo-ruby-sdk/docs/GetLmsUsersPositiveResponseDataResultsInner.md
2025-12-22 08:31:20 -08:00

2.8 KiB

Kombo::GetLmsUsersPositiveResponseDataResultsInner

Properties

Name Type Description Notes
id String The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
remote_id String The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
first_name String The user's first name.
last_name String The user's last name.
work_email String The user's work email address.
status String Current status of the user in the LMS.
remote_created_at Time The date and time the object was created in the remote system.
remote_deleted_at Time The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
changed_at Time The timestamp when this specific record was last modified. This field only updates when properties directly on this record change, NOT when related or nested models change. For filtering that considers nested data changes, use the `updated_after` parameter which will return records when either the record itself OR its related models have been updated.
remote_data Hash<String, Object> Includes the data fetched from the remote system. Please be aware that including this in you scope config might violate other scopes that are set. Remote data always has the endpoint path that we got the data from as the top level key. For example, it could look like: `{ &quot;/companies&quot;: { ... }}` This is not available on all plans. Reach out to Kombo if you need it.
custom_fields Hash<String, Object> A key-value store of fields not covered by the schema. Read more
integration_fields Array<GetHrisEmployeesPositiveResponseDataResultsInnerIntegrationFieldsInner> An array of selected passthrough integration fields. Read more

Example

require 'kombo_client'

instance = Kombo::GetLmsUsersPositiveResponseDataResultsInner.new(
  id: null,
  remote_id: null,
  first_name: null,
  last_name: null,
  work_email: null,
  status: null,
  remote_created_at: null,
  remote_deleted_at: null,
  changed_at: null,
  remote_data: null,
  custom_fields: null,
  integration_fields: null
)