Module Values.GetCredentialReportResponseSource

Contains the response to a successful GetCredentialReport request.

Sourcetype getCredentialReportResult = {
  1. content : ReportContentType.t option;
    (*

    Contains the credential report. The report is Base64-encoded.

    *)
  2. reportFormat : ReportFormatType.t option;
    (*

    The format (MIME type) of the credential report.

    *)
  3. generatedTime : DateType.t option;
    (*

    The date and time when the credential report was created, in ISO 8601 date-time format.

    *)
}
Sourceand responseMetaData = unit
Sourceand t = {
  1. getCredentialReportResult : getCredentialReportResult;
  2. responseMetaData : responseMetaData;
}
Sourcetype error = [
  1. | `CredentialReportExpiredException of CredentialReportExpiredException.t
  2. | `CredentialReportNotPresentException of CredentialReportNotPresentException.t
  3. | `CredentialReportNotReadyException of CredentialReportNotReadyException.t
  4. | `ServiceFailureException of ServiceFailureException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval context_ : string
Sourceval make : ?content:??? -> ?reportFormat:??? -> ?generatedTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `CredentialReportExpiredException of CredentialReportExpiredException.t | `CredentialReportNotPresentException of CredentialReportNotPresentException.t | `CredentialReportNotReadyException of CredentialReportNotReadyException.t | `ServiceFailureException of ServiceFailureException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `CredentialReportExpiredException of CredentialReportExpiredException.t | `CredentialReportNotPresentException of CredentialReportNotPresentException.t | `CredentialReportNotReadyException of CredentialReportNotReadyException.t | `ServiceFailureException of ServiceFailureException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Blob of ReportContentType.t | `Enum of string | `Timestamp of DateType.t ]) list ]) 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