markAsSpam method
Expresses the caller's opinion that one or more comments should be flagged as spam.
Request parameters:
id
- Flags the comments with the given IDs as spam in the caller's
opinion.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<void> markAsSpam(
core.List<core.String> id, {
core.String? $fields,
}) async {
if (id.isEmpty) {
throw core.ArgumentError('Parameter id cannot be empty.');
}
final queryParams_ = <core.String, core.List<core.String>>{
'id': id,
if ($fields != null) 'fields': [$fields],
};
const url_ = 'youtube/v3/comments/markAsSpam';
await _requester.request(
url_,
'POST',
queryParams: queryParams_,
downloadOptions: null,
);
}