toolsOzoneServerGetConfig function

Future<XRPCResponse<ServerGetConfigOutput>> toolsOzoneServerGetConfig({
  1. required ServiceContext $ctx,
  2. String? $service,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Get details about ozone's server configuration.

Implementation

Future<XRPCResponse<ServerGetConfigOutput>> toolsOzoneServerGetConfig({
  required ServiceContext $ctx,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.toolsOzoneServerGetConfig,
  service: $service,
  headers: $headers,
  parameters: {...?$unknown},
  to: const ServerGetConfigOutputConverter().fromJson,
);