Class: Google::Apis::PeopleV1::UpdateContactGroupRequest
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::UpdateContactGroupRequest
- 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 update an existing user contact group. All updated fields will be replaced.
Instance Attribute Summary collapse
-
#contact_group ⇒ Google::Apis::PeopleV1::ContactGroup
A contact group.
-
#read_group_fields ⇒ String
Optional.
-
#update_group_fields ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateContactGroupRequest
constructor
A new instance of UpdateContactGroupRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateContactGroupRequest
Returns a new instance of UpdateContactGroupRequest.
2791 2792 2793 |
# File 'lib/google/apis/people_v1/classes.rb', line 2791 def initialize(**args) update!(**args) end |
Instance Attribute Details
#contact_group ⇒ Google::Apis::PeopleV1::ContactGroup
A contact group.
Corresponds to the JSON property contactGroup
2774 2775 2776 |
# File 'lib/google/apis/people_v1/classes.rb', line 2774 def contact_group @contact_group end |
#read_group_fields ⇒ String
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 * memberCount * metadata * name
Corresponds to the JSON property readGroupFields
2781 2782 2783 |
# File 'lib/google/apis/people_v1/classes.rb', line 2781 def read_group_fields @read_group_fields end |
#update_group_fields ⇒ String
Optional. A field mask to restrict which fields on the group are updated.
Multiple fields can be specified by separating them with commas. Defaults to
name if not set or set to empty. Updated fields are replaced. Valid values
are: * clientData * name
Corresponds to the JSON property updateGroupFields
2789 2790 2791 |
# File 'lib/google/apis/people_v1/classes.rb', line 2789 def update_group_fields @update_group_fields end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2796 2797 2798 2799 2800 |
# File 'lib/google/apis/people_v1/classes.rb', line 2796 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) @update_group_fields = args[:update_group_fields] if args.key?(:update_group_fields) end |