Class ModifyContactGroupMembersRequest
A request to modify an existing contact group's members. Contacts can be removed from any group but they can only be added to a user group or "myContacts" or "starred" system groups.
Implements
Inherited Members
Namespace: Google.Apis.PeopleService.v1.Data
Assembly: Google.Apis.PeopleService.v1.dll
Syntax
public class ModifyContactGroupMembersRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ResourceNamesToAdd
Optional. The resource names of the contact people to add in the form of people/{person_id}
. The total
number of resource names in resource_names_to_add
and resource_names_to_remove
must be less than or
equal to 1000.
Declaration
[JsonProperty("resourceNamesToAdd")]
public virtual IList<string> ResourceNamesToAdd { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
ResourceNamesToRemove
Optional. The resource names of the contact people to remove in the form of people/{person_id}
. The total
number of resource names in resource_names_to_add
and resource_names_to_remove
must be less than or
equal to 1000.
Declaration
[JsonProperty("resourceNamesToRemove")]
public virtual IList<string> ResourceNamesToRemove { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |