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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb

Overview

JSON template for an email.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UserEmail

Returns a new instance of UserEmail.



2686
2687
2688
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2686

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

Instance Attribute Details

#addressString

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

Returns:

  • (String)


2665
2666
2667
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2665

def address
  @address
end

#custom_typeString

Custom Type. Corresponds to the JSON property customType

Returns:

  • (String)


2670
2671
2672
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2670

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)


2675
2676
2677
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2675

def primary
  @primary
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)


2684
2685
2686
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2684

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2691
2692
2693
2694
2695
2696
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2691

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)
  @type = args[:type] if args.key?(:type)
end