Module Values.CreateThemeDataSource

Represents all of the information that is required to create a theme.

Sourcetype nonrec t = {
  1. name : ThemeName.t;
    (*

    The name of the theme.

    *)
  2. values : ThemeValuesList.t;
    (*

    A list of key-value pairs that defines the properties of the theme.

    *)
  3. overrides : ThemeValuesList.t option;
    (*

    Describes the properties that can be overriden to customize an instance of the theme.

    *)
  4. tags : Tags.t option;
    (*

    One or more key-value pairs to use when tagging the theme data.

    *)
}
Sourceval context_ : string
Sourceval make : ?overrides:??? -> ?tags:??? -> name:ThemeName.t -> values:ThemeValuesList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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