Values.UpdateWebAppCustomizationRequestSourceAssigns new customization properties to a web app. You can modify the icon file, logo file, and title.
type nonrec t = {webAppId : WebAppId.t;Provide the identifier of the web app that you are updating.
*)title : WebAppTitle.t option;Provide an updated title.
*)logoFile : WebAppLogoFile.t option;Specify logo file data string (in base64 encoding).
*)faviconFile : WebAppFaviconFile.t option;Specify an icon file data string (in base64 encoding).
*)}val make :
?title:??? ->
?logoFile:??? ->
?faviconFile:??? ->
webAppId:WebAppId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Blob of WebAppLogoFile.t | `String of WebAppId.t ]) list ]