mirror of
https://github.com/acaloiaro/kombo-ruby-sdk
synced 2026-07-21 10:12:21 +00:00
3.2 KiB
3.2 KiB
Kombo::GetHrisPerformanceReviewsPositiveResponseDataResultsInner
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. | |
| type | String | The relationship between the reviewee and reviewer. Manager: The reviewer is the manager of the reviewee. Direct Report: The reviewer is a direct report of the reviewee (reverse MANAGER). Peer: The reviewer is a peer of the reviewee. Self: The reviewer is the reviewee himself/herself. null: The relationship cannot be determined or the reviewer is missing. | |
| summary_comment | String | The summary comment of the performance review. | |
| summary_rating | GetHrisPerformanceReviewsPositiveResponseDataResultsInnerSummaryRating | [optional] | |
| 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_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. | |
| 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: `{ "/companies": { ... }}` This is not available on all plans. Reach out to Kombo if you need it. | |
| reviewee | GetHrisPerformanceReviewsPositiveResponseDataResultsInnerReviewee | ||
| reviewer | GetHrisPerformanceReviewsPositiveResponseDataResultsInnerReviewer | ||
| review_cycle | GetHrisPerformanceReviewsPositiveResponseDataResultsInnerReviewCycle |
Example
require 'kombo_client'
instance = Kombo::GetHrisPerformanceReviewsPositiveResponseDataResultsInner.new(
id: null,
remote_id: null,
type: null,
summary_comment: null,
summary_rating: null,
changed_at: null,
remote_deleted_at: null,
remote_data: null,
reviewee: null,
reviewer: null,
review_cycle: null
)