Module Values.VerifyTrustResultSource

Result of a VerifyTrust request.

Sourcetype nonrec t = {
  1. trustId : TrustId.t option;
    (*

    The unique Trust ID of the trust relationship that was verified.

    *)
}
Sourcetype nonrec error = [
  1. | `ClientException of ClientException.t
  2. | `EntityDoesNotExistException of EntityDoesNotExistException.t
  3. | `InvalidParameterException of InvalidParameterException.t
  4. | `ServiceException of ServiceException.t
  5. | `UnsupportedOperationException of UnsupportedOperationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?trustId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ClientException of ClientException.t | `EntityDoesNotExistException of EntityDoesNotExistException.t | `InvalidParameterException of InvalidParameterException.t | `ServiceException of ServiceException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ClientException of ClientException.t | `EntityDoesNotExistException of EntityDoesNotExistException.t | `InvalidParameterException of InvalidParameterException.t | `ServiceException of ServiceException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TrustId.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