Values.OptionStatusSourceProvides the current status of an entity.
type nonrec t = {creationDate : UpdateTimestamp.t option;The timestamp when the entity was created.
*)updateDate : UpdateTimestamp.t option;The timestamp of the last time the entity was updated.
*)updateVersion : UIntValue.t option;The latest version of the entity.
*)state : OptionState.t option;The state of the entity.
*)pendingDeletion : Boolean.t option;Indicates whether the entity is being deleted.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `Integer of UIntValue.t
| `Timestamp of UpdateTimestamp.t ])
list ]