Show / Hide Table of Contents

Class ListStyleConfigsRequest

Request to list StyleConfigs.

Inheritance
object
ListStyleConfigsRequest
Implements
IPageRequest
IMessage<ListStyleConfigsRequest>
IEquatable<ListStyleConfigsRequest>
IDeepCloneable<ListStyleConfigsRequest>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Maps.MapManagement.V2Beta
Assembly: Google.Maps.MapManagement.V2Beta.dll
Syntax
public sealed class ListStyleConfigsRequest : IPageRequest, IMessage<ListStyleConfigsRequest>, IEquatable<ListStyleConfigsRequest>, IDeepCloneable<ListStyleConfigsRequest>, IBufferMessage, IMessage

Constructors

ListStyleConfigsRequest()

Declaration
public ListStyleConfigsRequest()

ListStyleConfigsRequest(ListStyleConfigsRequest)

Declaration
public ListStyleConfigsRequest(ListStyleConfigsRequest other)
Parameters
Type Name Description
ListStyleConfigsRequest other

Properties

Filter

Optional. Filter expression for the ListStyleConfigs call. Currently only supports filtering by display_name. For example: display_name="My StyleConfig" will return all StyleConfigs with the display name "My StyleConfig".

Declaration
public string Filter { get; set; }
Property Value
Type Description
string

PageSize

Optional. The maximum number of StyleConfigs to return. The service may return fewer than this value. If unspecified, at most 50 StyleConfigs will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. CURRENTLY UNSUPPORTED.

Declaration
public int PageSize { get; set; }
Property Value
Type Description
int
Implements
IPageRequest.PageSize

PageToken

Optional. A page token, received from a previous ListStyleConfigs call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to ListStyleConfigs must match the call that provided the page token. CURRENTLY UNSUPPORTED.

Declaration
public string PageToken { get; set; }
Property Value
Type Description
string
Implements
IPageRequest.PageToken

Parent

Required. Parent project that owns the StyleConfigs. Format: projects/{project}

Declaration
public string Parent { get; set; }
Property Value
Type Description
string

ParentAsProjectName

ProjectName-typed view over the Parent resource name property.

Declaration
public ProjectName ParentAsProjectName { get; set; }
Property Value
Type Description
ProjectName

View

Optional. The subset of the StyleConfig to return. If this is unset, the default behavior is to return the FULL view.

Declaration
public StyleConfigView View { get; set; }
Property Value
Type Description
StyleConfigView
In this article
Back to top Generated by DocFX