Class: Google::Apis::ScriptV1::GoogleAppsScriptTypeUser
- Inherits:
-
Object
- Object
- Google::Apis::ScriptV1::GoogleAppsScriptTypeUser
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/script_v1/classes.rb,
generated/google/apis/script_v1/representations.rb,
generated/google/apis/script_v1/representations.rb
Overview
A simple user profile resource.
Instance Attribute Summary collapse
-
#domain ⇒ String
The user's domain.
-
#email ⇒ String
The user's identifying email address.
-
#name ⇒ String
The user's display name.
-
#photo_url ⇒ String
The user's photo.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAppsScriptTypeUser
constructor
A new instance of GoogleAppsScriptTypeUser.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAppsScriptTypeUser
Returns a new instance of GoogleAppsScriptTypeUser.
613 614 615 |
# File 'generated/google/apis/script_v1/classes.rb', line 613 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domain ⇒ String
The user's domain.
Corresponds to the JSON property domain
596 597 598 |
# File 'generated/google/apis/script_v1/classes.rb', line 596 def domain @domain end |
#email ⇒ String
The user's identifying email address.
Corresponds to the JSON property email
601 602 603 |
# File 'generated/google/apis/script_v1/classes.rb', line 601 def email @email end |
#name ⇒ String
The user's display name.
Corresponds to the JSON property name
606 607 608 |
# File 'generated/google/apis/script_v1/classes.rb', line 606 def name @name end |
#photo_url ⇒ String
The user's photo.
Corresponds to the JSON property photoUrl
611 612 613 |
# File 'generated/google/apis/script_v1/classes.rb', line 611 def photo_url @photo_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
618 619 620 621 622 623 |
# File 'generated/google/apis/script_v1/classes.rb', line 618 def update!(**args) @domain = args[:domain] if args.key?(:domain) @email = args[:email] if args.key?(:email) @name = args[:name] if args.key?(:name) @photo_url = args[:photo_url] if args.key?(:photo_url) end |