@sumup/sdk
Version:
The official TypeScript SDK for the SumUp API
27 lines • 483 B
text/typescript
/**
* Details Error
*
* Error message structure.
*/
export type DetailsError = {
/**
* Short title of the error.
*/
title?: string;
/**
* Details of the error.
*/
details?: string;
/**
* The status code.
*/
status?: number;
/**
* List of violated validation constraints.
*/
failed_constraints?: {
message?: string;
reference?: string;
}[];
};
//# sourceMappingURL=details-error.d.cts.map