class Google::Apis::PeopleV1::CreateContactGroupRequest
A request to create a new contact group.
Attributes
contact_group[RW]
A contact group. Corresponds to the JSON property `contactGroup` @return [Google::Apis::PeopleV1::ContactGroup]
read_group_fields[RW]
Optional. A field mask to restrict which fields on the group are returned. Defaults to `metadata`, `groupType`, and `name` if not set or set to empty. Valid fields are: * clientData * groupType * metadata * name Corresponds to the JSON property `readGroupFields` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/people_v1/classes.rb, line 767 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/people_v1/classes.rb, line 772 def update!(**args) @contact_group = args[:contact_group] if args.key?(:contact_group) @read_group_fields = args[:read_group_fields] if args.key?(:read_group_fields) end