Class: Google::Apis::PeopleV1::ProfileMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/people_v1/classes.rb,
generated/google/apis/people_v1/representations.rb,
generated/google/apis/people_v1/representations.rb

Overview

The metadata about a profile.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ProfileMetadata

Returns a new instance of ProfileMetadata.



1761
1762
1763
# File 'generated/google/apis/people_v1/classes.rb', line 1761

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

Instance Attribute Details

#object_typeString

Output only. The profile object type. Corresponds to the JSON property objectType

Returns:

  • (String)


1754
1755
1756
# File 'generated/google/apis/people_v1/classes.rb', line 1754

def object_type
  @object_type
end

#user_typesArray<String>

Output only. The user types. Corresponds to the JSON property userTypes

Returns:

  • (Array<String>)


1759
1760
1761
# File 'generated/google/apis/people_v1/classes.rb', line 1759

def user_types
  @user_types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1766
1767
1768
1769
# File 'generated/google/apis/people_v1/classes.rb', line 1766

def update!(**args)
  @object_type = args[:object_type] if args.key?(:object_type)
  @user_types = args[:user_types] if args.key?(:user_types)
end