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

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

The metadata about a profile.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ProfileMetadata

Returns a new instance of ProfileMetadata.



2361
2362
2363
# File 'lib/google/apis/people_v1/classes.rb', line 2361

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)


2354
2355
2356
# File 'lib/google/apis/people_v1/classes.rb', line 2354

def object_type
  @object_type
end

#user_typesArray<String>

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

Returns:

  • (Array<String>)


2359
2360
2361
# File 'lib/google/apis/people_v1/classes.rb', line 2359

def user_types
  @user_types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2366
2367
2368
2369
# File 'lib/google/apis/people_v1/classes.rb', line 2366

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