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.



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

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)


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

def key
  @key
end

#metadataGoogle::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

#valueString

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

Returns:

  • (String)


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