Show / Hide Table of Contents

Class BatchUpdateMembersRequest

Request to update members of one space within a batch.

Inheritance
object
BatchUpdateMembersRequest
Implements
IMessage<BatchUpdateMembersRequest>
IEquatable<BatchUpdateMembersRequest>
IDeepCloneable<BatchUpdateMembersRequest>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Apps.Meet.V2
Assembly: Google.Apps.Meet.V2.dll
Syntax
public sealed class BatchUpdateMembersRequest : IMessage<BatchUpdateMembersRequest>, IEquatable<BatchUpdateMembersRequest>, IDeepCloneable<BatchUpdateMembersRequest>, IBufferMessage, IMessage

Constructors

BatchUpdateMembersRequest()

Declaration
public BatchUpdateMembersRequest()

BatchUpdateMembersRequest(BatchUpdateMembersRequest)

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

Properties

Parent

Required. The parent resource shared by all Members being updated. Format: spaces/{space}

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

ParentAsSpaceName

SpaceName-typed view over the Parent resource name property.

Declaration
public SpaceName ParentAsSpaceName { get; set; }
Property Value
Type Description
SpaceName

Requests

Required. The request message specifying the resources to update. A maximum of 500 members can be modified in a batch.

Declaration
public RepeatedField<UpdateMemberRequest> Requests { get; }
Property Value
Type Description
RepeatedField<UpdateMemberRequest>

UpdateMask

Optional. Top-level field mask used to specify the fields to be updated in the member for all UpdateMemberRequests. There are 4 possible scenarios for top-level and child field mask:

  1. top-level and child field mask is absent: All fields provided in the requests are updated, including deleting fields not set in the requests.
  2. top-level field mask is present but child field mask is absent: The fields specified in the top-level field mask are updated.
  3. top-level and child field mask is present: The child field mask must be the same as the top-level field mask.
  4. top-level field mask is absent but child field mask is present: It isn't supported and will return an error.
Declaration
public FieldMask UpdateMask { get; set; }
Property Value
Type Description
FieldMask
In this article
Back to top Generated by DocFX