interface IPlatformHttpResponse {
/**
* HTTP status
*/
status: number;
/**
* Response headers
*/
headers: Record<string, string>;
/**
* Parsed response body
*/
data: any;
}interface IPlatformHttpResponse {
/**
* HTTP status
*/
status: number;
/**
* Response headers
*/
headers: Record<string, string>;
/**
* Parsed response body
*/
data: any;
}