Show / Hide Table of Contents

Class BatchUpdateUserLinksRequest

Request message for BatchUpdateUserLinks RPC.

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

Constructors

BatchUpdateUserLinksRequest()

Declaration
public BatchUpdateUserLinksRequest()

BatchUpdateUserLinksRequest(BatchUpdateUserLinksRequest)

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

Properties

Parent

Required. The account or property that all user links in the request are for. The parent field in the UpdateUserLinkRequest messages must either be empty or 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

Requests

Required. The requests specifying the user links to update. A maximum of 1000 user links can be updated in a batch.

Declaration
public RepeatedField<UpdateUserLinkRequest> Requests { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<UpdateUserLinkRequest>
Back to top