Response
Represents a response from a CosmosAsync request.
note
This type is deducted from Spotify's internal usage. It may not be accurate and may change in the future.
interface Response {
body: any;
headers: Headers;
status: number;
uri?: string;
}
Property | Type | Description |
---|---|---|
body | Body | Parsed JSON response body. |
headers | Headers | Response headers. |
status | number | HTTP status code. |
uri | string | undefined | Request URI. |