Module Values.UserAppItemSource

An Amazon Q App associated with a user, either owned by the user or favorited.

Sourcetype nonrec t = {
  1. appId : UUID.t option;
    (*

    The unique identifier of the Q App.

    *)
  2. appArn : AppArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Q App.

    *)
  3. title : Title.t option;
    (*

    The title of the Q App.

    *)
  4. description : Description.t option;
    (*

    The description of the Q App.

    *)
  5. createdAt : QAppsTimestamp.t option;
    (*

    The date and time the user's association with the Q App was created.

    *)
  6. canEdit : Boolean.t option;
    (*

    A flag indicating whether the user can edit the Q App.

    *)
  7. status : String_.t option;
    (*

    The status of the user's association with the Q App.

    *)
  8. isVerified : Boolean.t option;
    (*

    Indicates whether the Q App has been verified.

    *)
}
Sourceval make : ?appId:??? -> ?appArn:??? -> ?title:??? -> ?description:??? -> ?createdAt:??? -> ?canEdit:??? -> ?status:??? -> ?isVerified:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of UUID.t | `Timestamp of QAppsTimestamp.t ]) 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