class Google::Apis::PeopleV1::UserDefined
Arbitrary user data that is populated by the end users.
Attributes
key[RW]
The end user specified key of the user defined data. Corresponds to the JSON property `key` @return [String]
metadata[RW]
Metadata about a field. Corresponds to the JSON property `metadata` @return [Google::Apis::PeopleV1::FieldMetadata]
value[RW]
The end user specified value of the user defined 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 2925 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 2930 def update!(**args) @key = args[:key] if args.key?(:key) @metadata = args[:metadata] if args.key?(:metadata) @value = args[:value] if args.key?(:value) end