get method

Future<TvCampaignDetail> get(
  1. String profileId,
  2. String id, {
  3. String? accountId,
  4. String? $fields,
})

Gets one TvCampaignDetail by ID.

Request parameters:

profileId - Required. User profile ID associated with this request. Value must have pattern ^\[^/\]+$.

id - Required. TV Campaign ID. Value must have pattern ^\[^/\]+$.

accountId - Required. Account ID associated with this request.

$fields - Selector specifying which fields to include in a partial response.

Completes with a TvCampaignDetail.

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

  final url_ = 'userprofiles/' +
      core.Uri.encodeFull('$profileId') +
      '/tvCampaignDetails/' +
      core.Uri.encodeFull('$id');

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