Module Values.IframeConfigSource

The iframe configuration for the application.

Sourcetype nonrec t = {
  1. allow : IframePermissionList.t option;
    (*

    The list of features that are allowed in the iframe.

    *)
  2. sandbox : IframePermissionList.t option;
    (*

    The list of sandbox attributes for the iframe.

    *)
}
Sourceval make : ?allow:??? -> ?sandbox:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of IframePermission.t ] list ]) 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