Module Values_0.CustomContentConfigurationSource

The configuration of a CustomContentVisual.

Sourcetype nonrec t = {
  1. contentUrl : URLOperationTemplate.t option;
    (*

    The input URL that links to the custom content that you want in the custom visual.

    *)
  2. contentType : CustomContentType.t option;
    (*

    The content type of the custom content visual. You can use this to have the visual render as an image.

    *)
  3. imageScaling : CustomContentImageScalingConfiguration.t option;
    (*

    The sizing options for the size of the custom content visual. This structure is required when the ContentType of the visual is 'IMAGE'.

    *)
  4. interactions : VisualInteractionOptions.t option;
    (*

    The general visual interactions setup for a visual.

    *)
}
Sourceval make : ?contentUrl:??? -> ?contentType:??? -> ?imageScaling:??? -> ?interactions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of URLOperationTemplate.t | `Structure of (string * [> `Structure of (string * [> `Enum of string ]) list ]) 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