userTrainingEventInfo resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents events of a training assigned to a user in an attack simulation and training campaign. Training events include assigning the training, updating the training in progress, and completing the training.
Properties
Property | Type | Description |
---|---|---|
displayName | String | Display name of the training. |
latestTrainingStatus | trainingStatus | Latest status of the training assigned to the user. Possible values are: unknown , assigned , inProgress , completed , overdue , unknownFutureValue . |
trainingAssignedProperties | userTrainingContentEventInfo | Event details of the training when it was assigned to the user. |
trainingCompletedProperties | userTrainingContentEventInfo | Event details of the training when it was completed by the user. |
trainingUpdatedProperties | userTrainingContentEventInfo | Event details of the training when it was updated/in-progress by the user. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.userTrainingEventInfo",
"displayName": "String",
"latestTrainingStatus": "String",
"trainingAssignedProperties": {
"@odata.type": "microsoft.graph.userTrainingContentEventInfo"
},
"trainingCompletedProperties": {
"@odata.type": "microsoft.graph.userTrainingContentEventInfo"
},
"trainingUpdatedProperties": {
"@odata.type": "microsoft.graph.userTrainingContentEventInfo"
}
}