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