Google Maps Services Node Client
    Preparing search index...

    Interface GeolocateResponseError

    In the case of an error, a standard format error response body will be returned and the HTTP status code will be set to an error status.

    interface GeolocateResponseError {
        data: {
            error: {
                code: number;
                errors: { domain: string; message: string; reason: GeolocateErrorReason }[];
                message: string;
            };
        };
    }

    Hierarchy

    • AxiosResponse
      • GeolocateResponseError
    Index

    Properties

    Properties

    data: {
        error: {
            code: number;
            errors: { domain: string; message: string; reason: GeolocateErrorReason }[];
            message: string;
        };
    }