list method

Future<ListPlaceActionLinksResponse> list(
  1. String parent, {
  2. String? filter,
  3. int? pageSize,
  4. String? pageToken,
  5. String? $fields,
})

Lists the place action links for the specified location.

Request parameters:

parent - Required. The name of the location whose place action links will be listed. locations/{location_id}. Value must have pattern ^locations/\[^/\]+$.

filter - Optional. A filter constraining the place action links to return. The response includes entries that match the filter. We support only the following filter: 1. place_action_type=XYZ where XYZ is a valid PlaceActionType.

pageSize - Optional. How many place action links to return per page. Default of 10. The minimum is 1.

pageToken - Optional. If specified, returns the next page of place action links.

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

Completes with a ListPlaceActionLinksResponse.

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

  final url_ = 'v1/' + core.Uri.encodeFull('$parent') + '/placeActionLinks';

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