Module Values.ActionRevisionSource

Represents information about the version (or revision) of an action.

Sourcetype nonrec t = {
  1. revisionId : Revision.t;
    (*

    The system-generated unique ID that identifies the revision number of the action.

    *)
  2. revisionChangeId : RevisionChangeIdentifier.t;
    (*

    The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).

    *)
  3. created : Timestamp.t;
    (*

    The date and time when the most recent version of the action was created, in timestamp format.

    *)
}
Sourceval context_ : string
Sourceval make : revisionId:Revision.t -> revisionChangeId:RevisionChangeIdentifier.t -> created:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Revision.t | `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