Module Values.OutputConfigSource

Contains one typed output. It is used in the CreateOutput, GetOutput, and Update Output structures.

Sourcetype nonrec t = {
  1. cropping : CroppingConfig.t option;
    (*

    The output config type that applies to the cropping feature.

    *)
  2. clipping : ClippingConfig.t option;
    (*

    The output config type that applies to the clipping feature.

    *)
}
Sourceval make : ?cropping:??? -> ?clipping:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of ResourceDescription.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