Show / Hide Table of Contents

Class BatchDeleteUserLinksRequest

Request message for BatchDeleteUserLinks RPC.

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

Constructors

BatchDeleteUserLinksRequest()

Declaration
public BatchDeleteUserLinksRequest()

BatchDeleteUserLinksRequest(BatchDeleteUserLinksRequest)

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

Properties

Parent

Required. The account or property that all user links in the request are for. The parent of all values for user link names to delete 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

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<DeleteUserLinkRequest> Requests { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<DeleteUserLinkRequest>
Back to top