UNPKG

@sumup/sdk

Version:

The official TypeScript SDK for the SumUp API

18 lines 412 B
/** * BadRequest * * 400 Bad Request */ export type BadRequest = { errors: { /** * Fuller message giving context to error */ detail?: string; /** * Key indicating type of error */ type: "INVALID_BEARER_TOKEN" | "INVALID_USER_AGENT" | "NOT_ENOUGH_UNPAID_PAYOUTS" | "DUPLICATE_HEADERS"; }; }; //# sourceMappingURL=bad-request.d.ts.map