Class: Google::Apis::PeopleV1::Locale

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/people_v1/classes.rb,
lib/google/apis/people_v1/representations.rb,
lib/google/apis/people_v1/representations.rb

Overview

A person's locale preference.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Locale

Returns a new instance of Locale.



1415
1416
1417
# File 'lib/google/apis/people_v1/classes.rb', line 1415

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



1407
1408
1409
# File 'lib/google/apis/people_v1/classes.rb', line 1407

def 
  @metadata
end

#valueString

The well-formed IETF BCP 47 language tag representing the locale. Corresponds to the JSON property value

Returns:

  • (String)


1413
1414
1415
# File 'lib/google/apis/people_v1/classes.rb', line 1413

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1420
1421
1422
1423
# File 'lib/google/apis/people_v1/classes.rb', line 1420

def update!(**args)
  @metadata = args[:metadata] if args.key?(:metadata)
  @value = args[:value] if args.key?(:value)
end