Module Values.ActivateReadSetJobItemSource

A read set activation job.

Sourcetype nonrec t = {
  1. id : ActivationJobId.t option;
    (*

    The job's ID.

    *)
  2. sequenceStoreId : SequenceStoreId.t option;
    (*

    The job's sequence store ID.

    *)
  3. status : ReadSetActivationJobStatus.t option;
    (*

    The job's status.

    *)
  4. creationTime : SyntheticTimestamp_date_time.t option;
    (*

    When the job was created.

    *)
  5. completionTime : SyntheticTimestamp_date_time.t option;
    (*

    When the job completed.

    *)
}
Sourceval make : ?id:??? -> ?sequenceStoreId:??? -> ?status:??? -> ?creationTime:??? -> ?completionTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ActivationJobId.t | `Timestamp of SyntheticTimestamp_date_time.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