Class: Google::Apis::PeopleV1::UserDefined

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

Arbitrary user data that is populated by the end users.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UserDefined

Returns a new instance of UserDefined.



2925
2926
2927
# File 'lib/google/apis/people_v1/classes.rb', line 2925

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

Instance Attribute Details

#keyString

The end user specified key of the user defined data. Corresponds to the JSON property key

Returns:

  • (String)


2913
2914
2915
# File 'lib/google/apis/people_v1/classes.rb', line 2913

def key
  @key
end

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



2918
2919
2920
# File 'lib/google/apis/people_v1/classes.rb', line 2918

def 
  @metadata
end

#valueString

The end user specified value of the user defined data. Corresponds to the JSON property value

Returns:

  • (String)


2923
2924
2925
# File 'lib/google/apis/people_v1/classes.rb', line 2923

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2930
2931
2932
2933
2934
# 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