Module Values.ExternalUrlConfigSource

The external URL source for the application.

Sourcetype nonrec t = {
  1. accessUrl : URL.t;
    (*

    The URL to access the application.

    *)
  2. approvedOrigins : ApplicationApprovedOrigins.t option;
    (*

    Additional URLs to allow list if different than the access URL.

    *)
}
Sourceval context_ : string
Sourceval make : ?approvedOrigins:??? -> accessUrl:URL.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ApplicationTrustedSource.t ] list | `String of URL.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