mirror of
https://github.com/acaloiaro/kombo-ruby-sdk
synced 2026-07-21 10:12:21 +00:00
1.2 KiB
1.2 KiB
Kombo::GetAtsJobsPositiveResponseDataResultsInnerHiringTeamInner
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 | First name of the user. | |
| last_name | String | Last name of the user. | |
| String | Email of the user. If the email address is invalid, it will be set to null. | [optional] | |
| hiring_team_roles | Array<String> | Array of the roles of the user for this specific job. Currently only `RECRUITER` and `HIRING_MANAGER` are mapped into our unified schema. |
Example
require 'kombo_client'
instance = Kombo::GetAtsJobsPositiveResponseDataResultsInnerHiringTeamInner.new(
id: null,
remote_id: null,
first_name: null,
last_name: null,
email: null,
hiring_team_roles: null
)