Module Values.UpdateThemeDataSource

Saves the data binding information for a theme.

Sourcetype nonrec t = {
  1. id : Uuid.t option;
    (*

    The unique ID of the theme to update.

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

    The name of the theme to update.

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

    A list of key-value pairs that define the theme's properties.

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

    Describes the properties that can be overriden to customize the theme.

    *)
}
Sourceval context_ : string
Sourceval make : ?id:??? -> ?name:??? -> ?overrides:??? -> 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