toolsOzoneSignatureSearchAccounts function

Future<XRPCResponse<SignatureSearchAccountsOutput>> toolsOzoneSignatureSearchAccounts({
  1. required List<String> values,
  2. String? cursor,
  3. int? limit,
  4. required ServiceContext $ctx,
  5. Map<String, String>? $headers,
  6. Map<String, String>? $unknown,
})

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,
);