list method

Future<ListPublisherProfilesResponse> list(
  1. String accountId, {
  2. int? pageSize,
  3. String? pageToken,
  4. String? $fields,
})

List all publisher profiles visible to the buyer

Request parameters:

accountId - Account ID of the buyer.

pageSize - Specify the number of results to include per page.

pageToken - The page token as return from ListPublisherProfilesResponse.

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

Completes with a ListPublisherProfilesResponse.

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<ListPublisherProfilesResponse> list(
  core.String accountId, {
  core.int? pageSize,
  core.String? pageToken,
  core.String? $fields,
}) async {
  final _queryParams = <core.String, core.List<core.String>>{
    if (pageSize != null) 'pageSize': ['${pageSize}'],
    if (pageToken != null) 'pageToken': [pageToken],
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v2beta1/accounts/' +
      commons.escapeVariable('$accountId') +
      '/publisherProfiles';

  final _response = await _requester.request(
    _url,
    'GET',
    queryParams: _queryParams,
  );
  return ListPublisherProfilesResponse.fromJson(
      _response as core.Map<core.String, core.dynamic>);
}