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
| 958 959 960 | # File 'generated/google/apis/people_v1/classes.rb', line 958 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
| 950 951 952 | # File 'generated/google/apis/people_v1/classes.rb', line 950 def @metadata end | 
#value ⇒ String
The well-formed IETF BCP 47
language tag representing the locale.
Corresponds to the JSON property value
| 956 957 958 | # File 'generated/google/apis/people_v1/classes.rb', line 956 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 963 964 965 966 | # File 'generated/google/apis/people_v1/classes.rb', line 963 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @value = args[:value] if args.key?(:value) end |