export type ErrorDetail = {
    type: string;
    loc: string[];
    msg: string;
    input: string;
    url: string;
};
export type BadResponse = {
    response: string;
    responsetext: string;
    response_code: string;
};
