Values.UserAppItemSourceAn Amazon Q App associated with a user, either owned by the user or favorited.
type nonrec t = {appId : UUID.t option;The unique identifier of the Q App.
*)appArn : AppArn.t option;The Amazon Resource Name (ARN) of the Q App.
*)title : Title.t option;The title of the Q App.
*)description : Description.t option;The description of the Q App.
*)createdAt : QAppsTimestamp.t option;The date and time the user's association with the Q App was created.
*)canEdit : Boolean.t option;A flag indicating whether the user can edit the Q App.
*)status : String_.t option;The status of the user's association with the Q App.
*)isVerified : Boolean.t option;Indicates whether the Q App has been verified.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `String of UUID.t
| `Timestamp of QAppsTimestamp.t ])
list ]