Class: Google::Apis::PeopleV1::Gender

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 gender.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Gender

Returns a new instance of Gender.



1105
1106
1107
# File 'lib/google/apis/people_v1/classes.rb', line 1105

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

Instance Attribute Details

#address_me_asString

Free form text field for pronouns that should be used to address the person. Common values are: * he/him * she/her * they/them Corresponds to the JSON property addressMeAs

Returns:

  • (String)


1085
1086
1087
# File 'lib/google/apis/people_v1/classes.rb', line 1085

def address_me_as
  @address_me_as
end

#formatted_valueString

Output only. The value of the gender translated and formatted in the viewer's account locale or the Accept-Language HTTP header locale. Unspecified or custom value are not localized. Corresponds to the JSON property formattedValue

Returns:

  • (String)


1092
1093
1094
# File 'lib/google/apis/people_v1/classes.rb', line 1092

def formatted_value
  @formatted_value
end

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



1097
1098
1099
# File 'lib/google/apis/people_v1/classes.rb', line 1097

def 
  @metadata
end

#valueString

The gender for the person. The gender can be custom or one of these predefined values: * male * female * unspecified Corresponds to the JSON property value

Returns:

  • (String)


1103
1104
1105
# File 'lib/google/apis/people_v1/classes.rb', line 1103

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1110
1111
1112
1113
1114
1115
# File 'lib/google/apis/people_v1/classes.rb', line 1110

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