toolsOzoneSignatureSearchAccounts function
Search for accounts that match one or more threat signature values.
Implementation
Future<XRPCResponse<SignatureSearchAccountsOutput>>
toolsOzoneSignatureSearchAccounts({
required List<String> values,
String? cursor,
int? limit,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.toolsOzoneSignatureSearchAccounts,
headers: $headers,
parameters: {
...?$unknown,
'values': values,
if (cursor != null) 'cursor': cursor,
if (limit != null) 'limit': limit,
},
to: const SignatureSearchAccountsOutputConverter().fromJson,
);