patch method
- ManualTrigger request,
- String advertiserId,
- String triggerId, {
- String? updateMask,
- String? $fields,
Updates a manual trigger.
Returns the updated manual trigger if successful. Warning: Line Items using manual triggers no longer serve in Display & Video 360. This method will sunset on August 1, 2023. Read our [feature deprecation announcement](/display-video/api/deprecations#features.manual_triggers) for more information.
request
- The metadata request object.
Request parameters:
advertiserId
- Required. Immutable. The unique ID of the advertiser that
the manual trigger belongs to.
Value must have pattern ^\[^/\]+$
.
triggerId
- Output only. The unique ID of the manual trigger.
Value must have pattern ^\[^/\]+$
.
updateMask
- Required. The mask to control which fields to update.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a ManualTrigger.
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<ManualTrigger> patch(
ManualTrigger request,
core.String advertiserId,
core.String triggerId, {
core.String? updateMask,
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if (updateMask != null) 'updateMask': [updateMask],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v2/advertisers/' +
core.Uri.encodeFull('$advertiserId') +
'/manualTriggers/' +
core.Uri.encodeFull('$triggerId');
final response_ = await _requester.request(
url_,
'PATCH',
body: body_,
queryParams: queryParams_,
);
return ManualTrigger.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}