Module Values.UpdateWebAppCustomizationRequestSource

Assigns new customization properties to a web app. You can modify the icon file, logo file, and title.

Sourcetype nonrec t = {
  1. webAppId : WebAppId.t;
    (*

    Provide the identifier of the web app that you are updating.

    *)
  2. title : WebAppTitle.t option;
    (*

    Provide an updated title.

    *)
  3. logoFile : WebAppLogoFile.t option;
    (*

    Specify logo file data string (in base64 encoding).

    *)
  4. faviconFile : WebAppFaviconFile.t option;
    (*

    Specify an icon file data string (in base64 encoding).

    *)
}
Sourceval context_ : string
Sourceval make : ?title:??? -> ?logoFile:??? -> ?faviconFile:??? -> webAppId:WebAppId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of WebAppLogoFile.t | `String of WebAppId.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