Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ModifyContactGroupMembersRequest

import type { ModifyContactGroupMembersRequest } from "https://googleapis.deno.dev/v1/people:v1.ts";

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.

interface ModifyContactGroupMembersRequest {
resourceNamesToAdd?: string[];
resourceNamesToRemove?: string[];
}

§Properties

§
resourceNamesToAdd?: string[]
[src]

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.

§
resourceNamesToRemove?: string[]
[src]

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.