class Google::Apis::AdminDirectoryV1::UserGender
Attributes
address_me_as[RW]
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` @return [String]
custom_gender[RW]
Custom gender. Corresponds to the JSON property `customGender` @return [String]
type[RW]
Gender. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/admin_directory_v1/classes.rb, line 4177 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/admin_directory_v1/classes.rb, line 4182 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