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
926 927 928 |
# File 'generated/google/apis/people_v1/classes.rb', line 926 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
924 925 926 |
# File 'generated/google/apis/people_v1/classes.rb', line 924 def @metadata end |
#value ⇒ String
The well-formed IETF BCP 47
language tag representing the locale.
Corresponds to the JSON property value
919 920 921 |
# File 'generated/google/apis/people_v1/classes.rb', line 919 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
931 932 933 934 |
# File 'generated/google/apis/people_v1/classes.rb', line 931 def update!(**args) @value = args[:value] if args.key?(:value) @metadata = args[:metadata] if args.key?(:metadata) end |