Values.UserAccessResultItemSourceContains information about a user's access to an application.
type nonrec t = {app : String255.t option;The name of the application.
*)tenantId : TenantIdentifier.t option;The ID of the application tenant.
*)tenantDisplayName : String2048.t option;The display name of the tenant.
*)taskId : UUID.t option;The unique ID of the task.
*)resultStatus : ResultStatus.t option;The status of the user access result item. The following states are possible: IN_PROGRESS: The user access task is in progress. COMPLETED: The user access task completed successfully. FAILED: The user access task failed. EXPIRED: The user access task expired.
*)email : Email.t option;The email address of the target user.
*)userId : SensitiveString2048.t option;The unique ID of user.
*)userFullName : SensitiveString2048.t option;The full name of the user.
*)userFirstName : SensitiveString2048.t option;The first name of the user.
*)userLastName : SensitiveString2048.t option;The last name of the user.
*)userStatus : String_.t option;The status of the user returned by the application.
*)taskError : TaskError.t option;Contains information about an error returned from a user access task.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of String255.t
| `Structure of (string * [> `String of String_.t ]) list ])
list ]