approve method
- GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalRequest request,
- String name, {
- String? $fields,
Approves a DisplayVideo360AdvertiserLinkProposal.
The DisplayVideo360AdvertiserLinkProposal will be deleted and a new DisplayVideo360AdvertiserLink will be created.
request
- The metadata request object.
Request parameters:
name
- Required. The name of the DisplayVideo360AdvertiserLinkProposal
to approve. Example format:
properties/1234/displayVideo360AdvertiserLinkProposals/5678
Value must have pattern
^properties/\[^/\]+/displayVideo360AdvertiserLinkProposals/\[^/\]+$
.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse.
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<
GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse>
approve(
GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalRequest
request,
core.String name, {
core.String? $fields,
}) async {
final _body = convert.json.encode(request.toJson());
final _queryParams = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1alpha/' + core.Uri.encodeFull('$name') + ':approve';
final _response = await _requester.request(
_url,
'POST',
body: _body,
queryParams: _queryParams,
);
return GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse
.fromJson(_response as core.Map<core.String, core.dynamic>);
}