get method

Future<ManualTrigger> get(
  1. String advertiserId,
  2. String triggerId, {
  3. String? $fields,
})

Gets a manual trigger.

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 parameters:

advertiserId - Required. The ID of the advertiser this manual trigger belongs to. Value must have pattern ^\[^/\]+$.

triggerId - Required. The ID of the manual trigger to fetch. Value must have pattern ^\[^/\]+$.

$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> get(
  core.String advertiserId,
  core.String triggerId, {
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v2/advertisers/' +
      core.Uri.encodeFull('$advertiserId') +
      '/manualTriggers/' +
      core.Uri.encodeFull('$triggerId');

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return ManualTrigger.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}