Module Values.MessageInsightsDataSourceSource

An object that contains filters applied when performing the Message Insights export.

Sourcetype nonrec t = {
  1. startDate : Timestamp.t;
    (*

    Represents the start date for the export interval as a timestamp. The start date is inclusive.

    *)
  2. endDate : Timestamp.t;
    (*

    Represents the end date for the export interval as a timestamp. The end date is inclusive.

    *)
  3. include_ : MessageInsightsFilters.t option;
    (*

    Filters for results to be included in the export file.

    *)
  4. exclude : MessageInsightsFilters.t option;
    (*

    Filters for results to be excluded from the export file.

    *)
  5. maxResults : MessageInsightsExportMaxResults.t option;
    (*

    The maximum number of results.

    *)
}
Sourceval context_ : string
Sourceval make : ?include_:??? -> ?exclude:??? -> ?maxResults:??? -> startDate:Timestamp.t -> endDate:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MessageInsightsExportMaxResults.t | `Structure of (string * [> `List of [> `Enum of string | `String of InsightsEmailAddress.t ] list ]) list | `Timestamp of Timestamp.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