Module Values.ThemeSummarySource

Describes the basic information about a theme.

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

    The unique ID for the app associated with the theme summary.

    *)
  2. environmentName : String_.t option;
    (*

    The name of the backend environment that is part of the Amplify app.

    *)
  3. id : Uuid.t option;
    (*

    The ID of the theme.

    *)
  4. name : ThemeName.t option;
    (*

    The name of the theme.

    *)
}
Sourceval make : ?appId:??? -> ?environmentName:??? -> ?id:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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