Name |
Type |
Description |
Notes |
id |
String |
|
[optional][readonly] |
status |
IssueStatusEnum |
Status of the issue. Options: ('ONGOING', 'RESOLVED') * `ONGOING` - ONGOING * `RESOLVED` - RESOLVED |
[optional] |
error_description |
String |
|
|
end_user |
Hash<String, AnyType> |
|
[optional][readonly] |
first_incident_time |
Time |
|
[optional] |
last_incident_time |
Time |
|
[optional] |
is_muted |
Boolean |
|
[optional][readonly] |
error_details |
Array<String> |
|
[optional][readonly] |
require 'merge_hris_client'
instance = MergeHRISClient::Issue.new(
id: 3fa85f64-5717-4562-b3fc-2c963f66afa6,
status: ONGOING,
error_description: Missing Permissions,
end_user: b82302de-852e-4e60-b050-edf9da3b7c02,
first_incident_time: 2022-12-05T16:19:15.161Z,
last_incident_time: 2022-12-05T16:19:15.161Z,
is_muted: true,
error_details: ["Missing employee permissions.","Missing time off permissions."]
)