batchGetTargetDomains method

Future<BatchGetTargetDomainsOutput> batchGetTargetDomains({
  1. required List<String> targetDomainIds,
})

Retrieves information about one or more target domains.

Parameter targetDomainIds : The list of target domain identifiers to retrieve.

Implementation

Future<BatchGetTargetDomainsOutput> batchGetTargetDomains({
  required List<String> targetDomainIds,
}) async {
  final $payload = <String, dynamic>{
    'targetDomainIds': targetDomainIds,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/BatchGetTargetDomains',
    exceptionFnMap: _exceptionFns,
  );
  return BatchGetTargetDomainsOutput.fromJson(response);
}