Module Values.OperationSummarySource

OperationSummary includes the following elements.

Sourcetype nonrec t = {
  1. operationId : OperationId.t option;
    (*

    Identifier returned to track the requested action.

    *)
  2. status : OperationStatus.t option;
    (*

    The current status of the requested operation in the system.

    *)
  3. type_ : OperationType.t option;
    (*

    Type of the action requested.

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

    The date when the request was submitted.

    *)
  5. domainName : DomainName.t option;
    (*

    Name of the domain.

    *)
  6. message : ErrorMessage.t option;
    (*

    Message about the operation.

    *)
  7. statusFlag : StatusFlag.t option;
    (*

    Automatically checks whether there are no outstanding operations on domains that need customer attention. Valid values are: PENDING_ACCEPTANCE: The operation is waiting for acceptance from the account that is receiving the domain. PENDING_CUSTOMER_ACTION: The operation is waiting for customer action, for example, returning an email. PENDING_AUTHORIZATION: The operation is waiting for the form of authorization. For more information, see ResendOperationAuthorization. PENDING_PAYMENT_VERIFICATION: The operation is waiting for the payment method to validate. PENDING_SUPPORT_CASE: The operation includes a support case and is waiting for its resolution.

    *)
  8. lastUpdatedDate : Timestamp.t option;
    (*

    The date when the last change was made in Unix time format and Coordinated Universal Time (UTC).

    *)
}
Sourceval make : ?operationId:??? -> ?status:??? -> ?type_:??? -> ?submittedDate:??? -> ?domainName:??? -> ?message:??? -> ?statusFlag:??? -> ?lastUpdatedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of OperationId.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