Module Values.LastModifiedDateSource

Defines a filter to retrieve opportunities based on the last modified date. This filter is useful for tracking changes or updates to opportunities over time.

Sourcetype nonrec t = {
  1. afterLastModifiedDate : DateTime.t option;
    (*

    Specifies the date after which the opportunities were modified. Use this filter to retrieve only those opportunities that were modified after a given timestamp.

    *)
  2. beforeLastModifiedDate : DateTime.t option;
    (*

    Specifies the date before which the opportunities were modified. Use this filter to retrieve only those opportunities that were modified before a given timestamp.

    *)
}
Sourceval make : ?afterLastModifiedDate:??? -> ?beforeLastModifiedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of DateTime.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