class Google::Apis::AdminDirectoryV1::UserName
Attributes
family_name[RW]
The user's last name. Required when creating a user account. Corresponds to the JSON property `familyName` @return [String]
full_name[RW]
The user's full name formed by concatenating the first and last name values. Corresponds to the JSON property `fullName` @return [String]
given_name[RW]
The user's first name. Required when creating a user account. Corresponds to the JSON property `givenName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/admin_directory_v1/classes.rb, line 4407 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 4412 def update!(**args) @family_name = args[:family_name] if args.key?(:family_name) @full_name = args[:full_name] if args.key?(:full_name) @given_name = args[:given_name] if args.key?(:given_name) end