Show / Hide Table of Contents

Class AuditUserLinksRequest

Request message for AuditUserLinks RPC.

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

Constructors

AuditUserLinksRequest()

Declaration
public AuditUserLinksRequest()

AuditUserLinksRequest(AuditUserLinksRequest)

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

Properties

PageSize

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

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 AuditUserLinks call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to AuditUserLinks 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