Class: Google::Apis::PeopleV1::UserDefined
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::UserDefined
- 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
Arbitrary user data that is populated by the end users.
Instance Attribute Summary collapse
-
#key ⇒ String
The end user specified key of the user defined data.
-
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
-
#value ⇒ String
The end user specified value of the user defined data.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserDefined
constructor
A new instance of UserDefined.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UserDefined
Returns a new instance of UserDefined.
2926 2927 2928 |
# File 'lib/google/apis/people_v1/classes.rb', line 2926 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
The end user specified key of the user defined data.
Corresponds to the JSON property key
2914 2915 2916 |
# File 'lib/google/apis/people_v1/classes.rb', line 2914 def key @key end |
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
2919 2920 2921 |
# File 'lib/google/apis/people_v1/classes.rb', line 2919 def @metadata end |
#value ⇒ String
The end user specified value of the user defined data.
Corresponds to the JSON property value
2924 2925 2926 |
# File 'lib/google/apis/people_v1/classes.rb', line 2924 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2931 2932 2933 2934 2935 |
# File 'lib/google/apis/people_v1/classes.rb', line 2931 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 |