class Google::Apis::PeopleV1::GroupClientData
Arbitrary client data that is populated by clients. Duplicate keys and values are allowed.
Attributes
key[RW]
The client specified key of the client data. Corresponds to the JSON property `key` @return [String]
value[RW]
The client specified value of the client data. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/people_v1/classes.rb, line 1152 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 1157 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end