docs/Script API/interfaces/Backend_Script_API._internal_.AxiosResponse.html
interface AxiosResponse<T = any, D = any> {
config: InternalAxiosRequestConfig<D>;
data: T;
headers:
| AxiosResponseHeaders
| Partial<
RawAxiosHeaders & {
"Cache-Control": AxiosHeaderValue;
"Content-Encoding": AxiosHeaderValue;
"Content-Length": AxiosHeaderValue;
"Content-Type": AxiosHeaderValue;
Server: AxiosHeaderValue;
} & { "set-cookie": string[] },
>;
request?: any;
status: number;
statusText: string;
}
configdataheadersrequest?statusstatusText
config: InternalAxiosRequestConfig<D>
data: T
headers:
| AxiosResponseHeaders
| Partial<
RawAxiosHeaders & {
"Cache-Control": AxiosHeaderValue;
"Content-Encoding": AxiosHeaderValue;
"Content-Length": AxiosHeaderValue;
"Content-Type": AxiosHeaderValue;
Server: AxiosHeaderValue;
} & { "set-cookie": string[] },
>
Optionalrequestrequest?: any
status: number
statusText: string
Member Visibility
ThemeOSLightDark