UNPKG

@sumup/sdk

Version:

The official TypeScript SDK for the SumUp API

20 lines 392 B
/** * Error Forbidden * * Error message for forbidden requests. */ export type ErrorForbidden = { /** * Short description of the error. */ error_message?: string; /** * Platform code for the error. */ error_code?: string; /** * HTTP status code for the error. */ status_code?: string; }; //# sourceMappingURL=error-forbidden.d.cts.map