Module Values.ContactVersionSource

Version information for a contact.

Sourcetype nonrec t = {
  1. versionId : VersionId.t option;
    (*

    Version ID of a contact.

    *)
  2. created : Timestamp.t option;
    (*

    Time the contact version was created in UTC.

    *)
  3. activated : Timestamp.t option;
    (*

    Time the contact version was activated in UTC. A version is activated when it becomes the current active version of the contact.

    *)
  4. superseded : Timestamp.t option;
    (*

    Time the contact version was superseded in UTC. A version is superseded when a newer version becomes active.

    *)
  5. lastUpdated : Timestamp.t option;
    (*

    Time the contact version was last updated in UTC.

    *)
  6. status : VersionStatus.t option;
    (*

    Status of the contact version.

    *)
  7. failureCodes : VersionFailureReasonCodes.t option;
    (*

    List of failure codes for the contact version.

    *)
  8. failureMessage : String_.t option;
    (*

    Failure message for the contact version.

    *)
}
Sourceval make : ?versionId:??? -> ?created:??? -> ?activated:??? -> ?superseded:??? -> ?lastUpdated:??? -> ?status:??? -> ?failureCodes:??? -> ?failureMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of VersionId.t | `List of [> `Enum of string ] list | `String of String_.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