Class: Google::Apis::AdminDirectoryV1::UserAlias
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::UserAlias
- 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
The Directory API manages aliases, which are alternative email addresses.
Instance Attribute Summary collapse
-
#alias ⇒ String
The alias email address.
-
#etag ⇒ String
ETag of the resource.
-
#id ⇒ String
The unique ID for the user.
-
#kind ⇒ String
The type of the API resource.
-
#primary_email ⇒ String
The user's primary email address.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserAlias
constructor
A new instance of UserAlias.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UserAlias
Returns a new instance of UserAlias.
4894 4895 4896 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4894 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alias ⇒ String
The alias email address.
Corresponds to the JSON property alias
4871 4872 4873 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4871 def alias @alias end |
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
4876 4877 4878 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4876 def etag @etag end |
#id ⇒ String
The unique ID for the user.
Corresponds to the JSON property id
4881 4882 4883 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4881 def id @id end |
#kind ⇒ String
The type of the API resource. For Alias resources, the value is admin#
directory#alias
.
Corresponds to the JSON property kind
4887 4888 4889 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4887 def kind @kind end |
#primary_email ⇒ String
The user's primary email address.
Corresponds to the JSON property primaryEmail
4892 4893 4894 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4892 def primary_email @primary_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4899 4900 4901 4902 4903 4904 4905 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4899 def update!(**args) @alias = args[:alias] if args.key?(:alias) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @primary_email = args[:primary_email] if args.key?(:primary_email) end |