@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
20 lines • 789 B
TypeScript
import * as z from "zod/v3";
import { IamClientError } from "./iamclienterror.js";
export type OAuthErrorResponseData = {
error?: string | null | undefined;
errorDescription?: string | null | undefined;
};
export declare class OAuthErrorResponse extends IamClientError {
error?: string | null | undefined;
errorDescription?: string | null | undefined;
/** The original data that was passed to this error instance. */
data$: OAuthErrorResponseData;
constructor(err: OAuthErrorResponseData, httpMeta: {
response: Response;
request: Request;
body: string;
});
}
/** @internal */
export declare const OAuthErrorResponse$inboundSchema: z.ZodType<OAuthErrorResponse, z.ZodTypeDef, unknown>;
//# sourceMappingURL=oautherrorresponse.d.ts.map