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.



1394
1395
1396
# File 'lib/google/apis/people_v1/classes.rb', line 1394

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

Instance Attribute Details

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



1386
1387
1388
# File 'lib/google/apis/people_v1/classes.rb', line 1386

def 
  @metadata
end

#valueString

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

Returns:

  • (String)


1392
1393
1394
# File 'lib/google/apis/people_v1/classes.rb', line 1392

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1399
1400
1401
1402
# File 'lib/google/apis/people_v1/classes.rb', line 1399

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