Module Values.OutputResolutionStackInputSource

The input structure representing Output Resolution for Stacking Operation.

Sourcetype nonrec t = {
  1. predefined : PredefinedResolution.t option;
    (*

    A string value representing Predefined Output Resolution for a stacking operation. Allowed values are HIGHEST, LOWEST, and AVERAGE.

    *)
  2. userDefined : UserDefined.t option;
    (*

    The structure representing User Output Resolution for a Stacking operation defined as a value and unit.

    *)
}
Sourceval make : ?predefined:??? -> ?userDefined:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `Float of Float_.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