Class: Google::Apis::AdminDirectoryV1::UserName

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UserName

Returns a new instance of UserName.



5257
5258
5259
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5257

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

Instance Attribute Details

#display_nameString

The user's display name. Limit: 256 characters. Corresponds to the JSON property displayName

Returns:

  • (String)


5240
5241
5242
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5240

def display_name
  @display_name
end

#family_nameString

The user's last name. Required when creating a user account. Corresponds to the JSON property familyName

Returns:

  • (String)


5245
5246
5247
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5245

def family_name
  @family_name
end

#full_nameString

The user's full name formed by concatenating the first and last name values. Corresponds to the JSON property fullName

Returns:

  • (String)


5250
5251
5252
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5250

def full_name
  @full_name
end

#given_nameString

The user's first name. Required when creating a user account. Corresponds to the JSON property givenName

Returns:

  • (String)


5255
5256
5257
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5255

def given_name
  @given_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5262
5263
5264
5265
5266
5267
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5262

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @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