getTvcAppDeployments method

Future<TGetTvcAppDeploymentsResponse> getTvcAppDeployments({
  1. required TGetTvcAppDeploymentsBody input,
})

List all deployments for a given TVC App

Sign the provided TGetTvcAppDeploymentsBody with the client's stamp function and submit the request (POST /public/v1/query/list_tvc_app_deployments).

See also: stampGetTvcAppDeployments.

Implementation

Future<TGetTvcAppDeploymentsResponse> getTvcAppDeployments({
  required TGetTvcAppDeploymentsBody input,
}) async {
  return await request<TGetTvcAppDeploymentsBody,
          TGetTvcAppDeploymentsResponse>(
      "/public/v1/query/list_tvc_app_deployments",
      input,
      (json) => TGetTvcAppDeploymentsResponse.fromJson(json));
}