Module Values.ScheduleActionSource

Contains information on a single schedule action.

Sourcetype nonrec t = {
  1. actionName : string;
    (*

    The name of the action, must be unique within the schedule. This name provides the main reference to an action once it is added to the schedule. A name is unique if it is no longer in the schedule. The schedule is automatically cleaned up to remove actions with a start time of more than 1 hour ago (approximately) so at that point a name can be reused.

    *)
  2. scheduleActionSettings : ScheduleActionSettings.t;
    (*

    Settings for this schedule action.

    *)
  3. scheduleActionStartSettings : ScheduleActionStartSettings.t;
    (*

    The time for the action to start in the channel.

    *)
}
Sourceval context_ : string
Sourceval make : actionName:string -> scheduleActionSettings:ScheduleActionSettings.t -> scheduleActionStartSettings:ScheduleActionStartSettings.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of int | `List of [> `String of string | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of int | `Long of Awso.Import.Int64.t | `String of string | `Structure of (string * [> `Enum of string ]) list ]) list ]) list ]) list ] list | `Long of Awso.Import.Int64.t | `String of string | `Structure of (string * [> `Enum of string | `String of string | `Structure of (string * [> `Enum of string | `String of string ]) list ]) list ]) list ]) 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