Show / Hide Table of Contents

Class ListUserLinksRequest

Request message for ListUserLinks RPC.

Inheritance
System.Object
ListUserLinksRequest
Implements
Google.Protobuf.IMessage<ListUserLinksRequest>
System.IEquatable<ListUserLinksRequest>
Google.Protobuf.IDeepCloneable<ListUserLinksRequest>
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 ListUserLinksRequest : IMessage<ListUserLinksRequest>, IEquatable<ListUserLinksRequest>, IDeepCloneable<ListUserLinksRequest>, IBufferMessage, IMessage, IPageRequest

Constructors

ListUserLinksRequest()

Declaration
public ListUserLinksRequest()

ListUserLinksRequest(ListUserLinksRequest)

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

Properties

PageSize

The maximum number of user links to return. The service may return fewer than this value. If unspecified, at most 200 user links will be returned. The maximum value is 500; values above 500 will be coerced to 500.

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 ListUserLinks call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListUserLinks 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. Example format: accounts/1234

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

ParentAsAccountName

AccountName-typed view over the Parent resource name property.

Declaration
public AccountName ParentAsAccountName { get; set; }
Property Value
Type Description
AccountName

ParentAsPropertyName

PropertyName-typed view over the Parent resource name property.

Declaration
public PropertyName ParentAsPropertyName { get; set; }
Property Value
Type Description
PropertyName

ParentAsResourceName

Google.Api.Gax.IResourceName-typed view over the Parent resource name property.

Declaration
public IResourceName ParentAsResourceName { get; set; }
Property Value
Type Description
Google.Api.Gax.IResourceName
Back to top