Class: Google::Apis::PeopleV1::CreateContactGroupRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/people_v1/classes.rb,
lib/google/apis/people_v1/representations.rb,
lib/google/apis/people_v1/representations.rb

Overview

A request to create a new contact group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CreateContactGroupRequest

Returns a new instance of CreateContactGroupRequest.



760
761
762
# File 'lib/google/apis/people_v1/classes.rb', line 760

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#contact_groupGoogle::Apis::PeopleV1::ContactGroup

A contact group. Corresponds to the JSON property contactGroup



751
752
753
# File 'lib/google/apis/people_v1/classes.rb', line 751

def contact_group
  @contact_group
end

#read_group_fieldsString

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

Returns:

  • (String)


758
759
760
# File 'lib/google/apis/people_v1/classes.rb', line 758

def read_group_fields
  @read_group_fields
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



765
766
767
768
# File 'lib/google/apis/people_v1/classes.rb', line 765

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