Type Alias DcaasApiError

DCaaS-specific error information including error code, code name, and detailed message.

type DcaasApiError = {
    dcaasErrorCode?: number;
    errorCodeName?: string;
    errorMessage?: string;
}
Index
dcaasErrorCode?: number

DCaaS-specific numeric error code.

errorCodeName?: string

Human-readable name corresponding to the DCaaS error code.

errorMessage?: string

Summary of the error condition.