getOrganizationConfigs method

Future<TGetOrganizationConfigsResponse> getOrganizationConfigs({
  1. required TGetOrganizationConfigsBody input,
})

Get quorum settings and features for an organization.

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

See also: stampGetOrganizationConfigs.

Implementation

Future<TGetOrganizationConfigsResponse> getOrganizationConfigs({
  required TGetOrganizationConfigsBody input,
}) async {
  return await request<TGetOrganizationConfigsBody,
          TGetOrganizationConfigsResponse>(
      "/public/v1/query/get_organization_configs",
      input,
      (json) => TGetOrganizationConfigsResponse.fromJson(json));
}