getAppStatus method
Get live runtime status for a TVC App from the cluster.
Sign the provided TGetAppStatusBody with the client's stamp function and submit the request (POST /public/v1/query/get_app_status).
See also: stampGetAppStatus.
Implementation
Future<TGetAppStatusResponse> getAppStatus({
required TGetAppStatusBody input,
}) async {
return await request<TGetAppStatusBody, TGetAppStatusResponse>(
"/public/v1/query/get_app_status",
input,
(json) => TGetAppStatusResponse.fromJson(json));
}