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 read-only metadata about a profile.
Instance Attribute Summary collapse
- 
  
    
      #object_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The profile object type. 
- 
  
    
      #user_types  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The user types. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ProfileMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ProfileMetadata. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProfileMetadata
Returns a new instance of ProfileMetadata
| 1778 1779 1780 | # File 'generated/google/apis/people_v1/classes.rb', line 1778 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#object_type ⇒ String
The profile object type.
Corresponds to the JSON property objectType
| 1771 1772 1773 | # File 'generated/google/apis/people_v1/classes.rb', line 1771 def object_type @object_type end | 
#user_types ⇒ Array<String>
The user types.
Corresponds to the JSON property userTypes
| 1776 1777 1778 | # File 'generated/google/apis/people_v1/classes.rb', line 1776 def user_types @user_types end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1783 1784 1785 1786 | # File 'generated/google/apis/people_v1/classes.rb', line 1783 def update!(**args) @object_type = args[:object_type] if args.key?(:object_type) @user_types = args[:user_types] if args.key?(:user_types) end |