Show / Hide Table of Contents

Class ListConversionEventsRequest

Request message for ListConversionEvents RPC

Inheritance
System.Object
ListConversionEventsRequest
Implements
Google.Protobuf.IMessage<ListConversionEventsRequest>
System.IEquatable<ListConversionEventsRequest>
Google.Protobuf.IDeepCloneable<ListConversionEventsRequest>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Google.Api.Gax.Grpc.IPageRequest
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
Namespace: Google.Analytics.Admin.V1Alpha
Assembly: Google.Analytics.Admin.V1Alpha.dll
Syntax
public sealed class ListConversionEventsRequest : IMessage<ListConversionEventsRequest>, IEquatable<ListConversionEventsRequest>, IDeepCloneable<ListConversionEventsRequest>, IBufferMessage, IMessage, IPageRequest

Constructors

ListConversionEventsRequest()

Declaration
public ListConversionEventsRequest()

ListConversionEventsRequest(ListConversionEventsRequest)

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

Properties

PageSize

The maximum number of resources to return. If unspecified, at most 50 resources will be returned. The maximum value is 200; (higher values will be coerced to the maximum)

Declaration
public int PageSize { get; set; }
Property Value
Type Description
System.Int32
Implements
Google.Api.Gax.Grpc.IPageRequest.PageSize

PageToken

A page token, received from a previous ListConversionEvents call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListConversionEvents must match the call that provided the page token.

Declaration
public string PageToken { get; set; }
Property Value
Type Description
System.String
Implements
Google.Api.Gax.Grpc.IPageRequest.PageToken

Parent

Required. The resource name of the parent property. Example: 'properties/123'

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

ParentAsPropertyName

PropertyName-typed view over the Parent resource name property.

Declaration
public PropertyName ParentAsPropertyName { get; set; }
Property Value
Type Description
PropertyName
In This Article
Back to top