Class PlaceActionTypeMetadataResource.ListRequest
Returns the list of available place action types for a location or country.
Inheritance
Inherited Members
Namespace: Google.Apis.MyBusinessPlaceActions.v1
Assembly: Google.Apis.MyBusinessPlaceActions.v1.dll
Syntax
public class PlaceActionTypeMetadataResource.ListRequest : MyBusinessPlaceActionsBaseServiceRequest<ListPlaceActionTypeMetadataResponse>, IClientServiceRequest<ListPlaceActionTypeMetadataResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService)
Constructs a new List request.
Declaration
public ListRequest(IClientService service)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service |
Properties
Filter
Optional. A filter constraining the place action types to return metadata for. The response includes
entries that match the filter. We support only the following filters: 1. location=XYZ where XYZ is a
string indicating the resource name of a location, in the format locations/{location_id}
. 2.
region_code=XYZ where XYZ is a Unicode CLDR region code to find available action types. If no filter is
provided, all place action types are returned.
Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
LanguageCode
Optional. The IETF BCP-47 code of language to get display names in. If this language is not available, they will be provided in English.
Declaration
[RequestParameter("languageCode", RequestParameterType.Query)]
public virtual string LanguageCode { get; set; }
Property Value
Type | Description |
---|---|
string |
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
PageSize
Optional. How many action types to include per page. Default is 10, minimum is 1.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
Optional. If specified, the next page of place action type metadata is retrieved. The pageToken
is
returned when a call to placeActionTypeMetadata.list
returns more results than can fit into the
requested page size.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()