Class: Google::Apis::PeopleV1::Locale
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::PeopleV1::Locale
 
 
- 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
A person's locale preference.
Instance Attribute Summary collapse
- 
  
    
      #metadata  ⇒ Google::Apis::PeopleV1::FieldMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metadata about a field.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The well-formed IETF BCP 47 language tag representing the locale.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Locale 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Locale.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Locale
Returns a new instance of Locale
      957 958 959  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 957 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
      949 950 951  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 949 def @metadata end  | 
  
#value ⇒ String
The well-formed IETF BCP 47
language tag representing the locale.
Corresponds to the JSON property value
      955 956 957  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 955 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      962 963 964 965  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 962 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @value = args[:value] if args.key?(:value) end  |