UNPKG

@sumup/sdk

Version:

The official TypeScript SDK for the SumUp API

13 lines 487 B
import type { ErrorBody } from "./error-body"; /** * Error Extended * * Error payload with the invalid parameter reference. */ export type ErrorExtended = ErrorBody & { /** * Parameter name (with relative location) to which the error applies. Parameters from embedded resources are displayed using dot notation. For example, `card.name` refers to the `name` parameter embedded in the `card` object. */ param?: string; }; //# sourceMappingURL=error-extended.d.ts.map