Module Values.GetOperationDetailResponseSource

The GetOperationDetail response includes the following elements.

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

    The identifier for the operation.

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

    The current status of the requested operation in the system.

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

    Detailed information on the status including possible errors.

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

    The name of a domain.

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

    The type of operation that was requested.

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

    The date when the request was submitted.

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

    The date when the operation was last updated.

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

    Lists any outstanding operations that require customer action. 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.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidInput of InvalidInput.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?operationId:??? -> ?status:??? -> ?message:??? -> ?domainName:??? -> ?type_:??? -> ?submittedDate:??? -> ?lastUpdatedDate:??? -> ?statusFlag:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidInput of InvalidInput.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidInput of InvalidInput.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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