Module Values_1.ScheduleRefreshOnEntitySource

The refresh on entity for weekly or monthly schedules.

Sourcetype nonrec t = {
  1. dayOfWeek : DayOfWeek.t option;
    (*

    The day of the week that you want to schedule a refresh on.

    *)
  2. dayOfMonth : DayOfMonth.t option;
    (*

    The day of the month that you want to schedule refresh on.

    *)
}
Sourceval make : ?dayOfWeek:??? -> ?dayOfMonth:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DayOfMonth.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