Module Values.OptionStatusSource

Provides the current status of an entity.

Sourcetype nonrec t = {
  1. creationDate : UpdateTimestamp.t option;
    (*

    The timestamp when the entity was created.

    *)
  2. updateDate : UpdateTimestamp.t option;
    (*

    The timestamp of the last time the entity was updated.

    *)
  3. updateVersion : UIntValue.t option;
    (*

    The latest version of the entity.

    *)
  4. state : OptionState.t option;
    (*

    The state of the entity.

    *)
  5. pendingDeletion : Boolean.t option;
    (*

    Indicates whether the entity is being deleted.

    *)
}
Sourceval make : ?creationDate:??? -> ?updateDate:??? -> ?updateVersion:??? -> ?state:??? -> ?pendingDeletion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of UIntValue.t | `Timestamp of UpdateTimestamp.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