Module Values.ThemeSource

The custom branding theme, which might include a custom logo, website links, and other branding to display to users.

Sourcetype nonrec t = {
  1. stackName : Name.t option;
    (*

    The stack that has the custom branding theme.

    *)
  2. state : ThemeState.t option;
    (*

    The state of the theme.

    *)
  3. themeTitleText : ThemeTitleText.t option;
    (*

    The browser tab page title.

    *)
  4. themeStyling : ThemeStyling.t option;
    (*

    The color that is used for the website links, text, buttons, and catalog page background.

    *)
  5. themeOrganizationLogoURL : String_.t option;
    (*

    The URL of the logo that displays in the catalog page header.

    *)
  6. themeFaviconURL : String_.t option;
    (*

    The URL of the icon that displays at the top of a user's browser tab during streaming sessions.

    *)
  7. createdTime : Timestamp.t option;
    (*

    The time the theme was created.

    *)
}
Sourceval make : ?stackName:??? -> ?state:??? -> ?themeTitleText:??? -> ?themeStyling:??? -> ?themeFooterLinks:??? -> ?themeOrganizationLogoURL:??? -> ?themeFaviconURL:??? -> ?createdTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of ThemeFooterLinkDisplayName.t ]) list ] list | `String of Name.t | `Timestamp of Timestamp.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