Show / Hide Table of Contents

Class BatchGetUserLinksRequest

Request message for BatchGetUserLinks RPC.

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

Constructors

BatchGetUserLinksRequest()

Declaration
public BatchGetUserLinksRequest()

BatchGetUserLinksRequest(BatchGetUserLinksRequest)

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

Properties

Names

Required. The names of the user links to retrieve. A maximum of 1000 user links can be retrieved in a batch. Format: accounts/{accountId}/userLinks/{userLinkId}

Declaration
public RepeatedField<string> Names { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<System.String>

Parent

Required. The account or property that all user links in the request are for. The parent of all provided values for the 'names' field must match this field. 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

UserLinkNames

UserLinkName-typed view over the Names resource name property.

Declaration
public ResourceNameList<UserLinkName> UserLinkNames { get; }
Property Value
Type Description
Google.Api.Gax.ResourceNameList<UserLinkName>
Back to top