Class: Google::Apis::AdminDirectoryV1::UserGender
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::UserGender
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb
Instance Attribute Summary collapse
-
#address_me_as ⇒ String
AddressMeAs.
-
#custom_gender ⇒ String
Custom gender.
-
#type ⇒ String
Gender.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserGender
constructor
A new instance of UserGender.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UserGender
Returns a new instance of UserGender.
5042 5043 5044 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5042 def initialize(**args) update!(**args) end |
Instance Attribute Details
#address_me_as ⇒ String
AddressMeAs. A human-readable string containing the proper way to refer to the
profile owner by humans for example he/him/his or they/them/their.
Corresponds to the JSON property addressMeAs
5030 5031 5032 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5030 def address_me_as @address_me_as end |
#custom_gender ⇒ String
Custom gender.
Corresponds to the JSON property customGender
5035 5036 5037 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5035 def custom_gender @custom_gender end |
#type ⇒ String
Gender.
Corresponds to the JSON property type
5040 5041 5042 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5040 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5047 5048 5049 5050 5051 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5047 def update!(**args) @address_me_as = args[:address_me_as] if args.key?(:address_me_as) @custom_gender = args[:custom_gender] if args.key?(:custom_gender) @type = args[:type] if args.key?(:type) end |