Class: Google::Apis::PeopleV1::ProfileMetadata
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::ProfileMetadata
- 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
-
#object_type ⇒ String
Output only.
-
#user_types ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProfileMetadata
constructor
A new instance of ProfileMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProfileMetadata
Returns a new instance of ProfileMetadata.
2110 2111 2112 |
# File 'generated/google/apis/people_v1/classes.rb', line 2110 def initialize(**args) update!(**args) end |
Instance Attribute Details
#object_type ⇒ String
Output only. The profile object type.
Corresponds to the JSON property objectType
2103 2104 2105 |
# File 'generated/google/apis/people_v1/classes.rb', line 2103 def object_type @object_type end |
#user_types ⇒ Array<String>
Output only. The user types.
Corresponds to the JSON property userTypes
2108 2109 2110 |
# File 'generated/google/apis/people_v1/classes.rb', line 2108 def user_types @user_types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2115 2116 2117 2118 |
# File 'generated/google/apis/people_v1/classes.rb', line 2115 def update!(**args) @object_type = args[:object_type] if args.key?(:object_type) @user_types = args[:user_types] if args.key?(:user_types) end |