Show / Hide Table of Contents

Class ListIosAppDataStreamsRequest

Request message for ListIosAppDataStreams RPC.

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

Constructors

ListIosAppDataStreamsRequest()

Declaration
public ListIosAppDataStreamsRequest()

ListIosAppDataStreamsRequest(ListIosAppDataStreamsRequest)

Declaration
public ListIosAppDataStreamsRequest(ListIosAppDataStreamsRequest other)
Parameters
Type Name Description
ListIosAppDataStreamsRequest 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 ListIosAppDataStreams call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListIosAppDataStreams 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 name of the parent property. For example, to list results of app streams under the property with Id 123: "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
Back to top