solarnetwork-api-core
    Preparing search index...

    Interface ErrorDetail

    Details on a request error, such as a validation failure message.

    interface ErrorDetail {
        code?: string;
        location: string;
        message: string;
        rejectedValue?: string;
    }
    Index

    Properties

    code?: string

    An error condition identifier.

    location: string

    The source of the error, such as a form field name.

    message: string

    An error message.

    rejectedValue?: string

    The value that was the cause of the error.