Module Values.RangeOverrideSource

Overrides the original range on a calculated attribute definition.

Sourcetype nonrec t = {
  1. start : Start.t;
    (*

    The start time of when to include objects.

    *)
  2. end_ : End.t option;
    (*

    The end time of when to include objects.

    *)
  3. unit : RangeUnit.t;
    (*

    The unit for start and end.

    *)
}
Sourceval context_ : string
Sourceval make : ?end_:??? -> start:Start.t -> unit:RangeUnit.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Start.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