getTvcApps method

Future<TGetTvcAppsResponse> getTvcApps({
  1. required TGetTvcAppsBody input,
})

List all TVC Apps within an organization.

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

See also: stampGetTvcApps.

Implementation

Future<TGetTvcAppsResponse> getTvcApps({
  required TGetTvcAppsBody input,
}) async {
  return await request<TGetTvcAppsBody, TGetTvcAppsResponse>(
      "/public/v1/query/list_tvc_apps",
      input,
      (json) => TGetTvcAppsResponse.fromJson(json));
}