Class: Google::Apis::AdminDirectoryV1::UserEmail

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

Overview

JSON template for an email.

Defined Under Namespace

Classes: PublicKeyEncryptionCertificates

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UserEmail

Returns a new instance of UserEmail.



5006
5007
5008
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5006

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

Instance Attribute Details

#addressString

Email id of the user. Corresponds to the JSON property address

Returns:

  • (String)


4979
4980
4981
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4979

def address
  @address
end

#custom_typeString

Custom Type. Corresponds to the JSON property customType

Returns:

  • (String)


4984
4985
4986
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4984

def custom_type
  @custom_type
end

#primaryBoolean Also known as: primary?

If this is user's primary email. Only one entry could be marked as primary. Corresponds to the JSON property primary

Returns:

  • (Boolean)


4989
4990
4991
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4989

def primary
  @primary
end

#public_key_encryption_certificatesGoogle::Apis::AdminDirectoryV1::UserEmail::PublicKeyEncryptionCertificates

Public Key Encryption Certificates. Current limit: 1 per email address, and 5 per user. Corresponds to the JSON property public_key_encryption_certificates



4996
4997
4998
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4996

def public_key_encryption_certificates
  @public_key_encryption_certificates
end

#typeString

Each entry can have a type which indicates standard types of that entry. For example email could be of home, work etc. In addition to the standard type, an entry can have a custom type and can take any value Such types should have the CUSTOM value as type and also have a customType value. Corresponds to the JSON property type

Returns:

  • (String)


5004
5005
5006
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5004

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5011
5012
5013
5014
5015
5016
5017
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5011

def update!(**args)
  @address = args[:address] if args.key?(:address)
  @custom_type = args[:custom_type] if args.key?(:custom_type)
  @primary = args[:primary] if args.key?(:primary)
  @public_key_encryption_certificates = args[:public_key_encryption_certificates] if args.key?(:public_key_encryption_certificates)
  @type = args[:type] if args.key?(:type)
end