toolsOzoneSetGetValues function
Get a specific set and its values
Implementation
Future<XRPCResponse<SetGetValuesOutput>> toolsOzoneSetGetValues({
required String name,
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.toolsOzoneSetGetValues,
headers: $headers,
parameters: {
...?$unknown,
'name': name,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const SetGetValuesOutputConverter().fromJson,
);