Module Values.UserAccessTaskItemSource

Contains information about a user access task.

Sourcetype nonrec t = {
  1. app : String255.t option;
    (*

    The name of the application.

    *)
  2. tenantId : TenantIdentifier.t option;
    (*

    The ID of the application tenant.

    *)
  3. taskId : UUID.t option;
    (*

    The unique ID of the task.

    *)
  4. error : TaskError.t option;
    (*

    Error from the task, if any.

    *)
}
Sourceval make : ?app:??? -> ?tenantId:??? -> ?taskId:??? -> ?error:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String255.t | `Structure of (string * [> `String of String_.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t