toolsOzoneSetDeleteValues function
Delete values from a specific set. Attempting to delete values that are not in the set will not result in an error
Implementation
Future<XRPCResponse<EmptyData>> toolsOzoneSetDeleteValues({
required String name,
required List<String> values,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.toolsOzoneSetDeleteValues,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'name': name, 'values': values},
);