update method
Updates a creative.
request
- The metadata request object.
Request parameters:
accountId
- The account that this creative belongs to. Can be used to
filter the response of the creatives.list method.
creativeId
- The buyer-defined creative ID of this creative. Can be used
to filter the response of the creatives.list method.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Creative.
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<Creative> update(
Creative request,
core.String accountId,
core.String creativeId, {
core.String? $fields,
}) async {
final _body = convert.json.encode(request);
final _queryParams = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final _url = 'v2beta1/accounts/' +
commons.escapeVariable('$accountId') +
'/creatives/' +
commons.escapeVariable('$creativeId');
final _response = await _requester.request(
_url,
'PUT',
body: _body,
queryParams: _queryParams,
);
return Creative.fromJson(_response as core.Map<core.String, core.dynamic>);
}