@sumup/sdk
    Preparing search index...

    Type Alias DetailsError

    Details Error

    Details of a request validation error.

    type DetailsError = {
        details?: string;
        failed_constraints?: { message?: string; reference?: string }[];
        status?: number;
        title?: string;
    }
    Index
    details?: string

    Details of the error.

    failed_constraints?: { message?: string; reference?: string }[]

    List of violated validation constraints.

    Type Declaration

    • Optionalmessage?: string

      Human-readable description of the violated constraint.

    • Optionalreference?: string

      Name of the field that violated the constraint.

    status?: number

    HTTP status code for the error.

    title?: string

    Short title of the error.