Class: Google::Apis::ClassroomV1::UserProfile
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::UserProfile
- Defined in:
- generated/google/apis/classroom_v1/classes.rb,
generated/google/apis/classroom_v1/representations.rb,
generated/google/apis/classroom_v1/representations.rb
Overview
Global information for a user.
Instance Attribute Summary collapse
-
#email_address ⇒ String
Email address of the user.
-
#id ⇒ String
Identifier of the user.
-
#name ⇒ Google::Apis::ClassroomV1::Name
Details of the user's name.
-
#permissions ⇒ Array<Google::Apis::ClassroomV1::GlobalPermission>
Global permissions of the user.
-
#photo_url ⇒ String
URL of user's profile photo.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserProfile
constructor
A new instance of UserProfile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserProfile
Returns a new instance of UserProfile.
670 671 672 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 670 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email_address ⇒ String
Email address of the user. Read-only.
Corresponds to the JSON property emailAddress
658 659 660 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 658 def email_address @email_address end |
#id ⇒ String
Identifier of the user. Read-only.
Corresponds to the JSON property id
648 649 650 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 648 def id @id end |
#name ⇒ Google::Apis::ClassroomV1::Name
Details of the user's name.
Corresponds to the JSON property name
653 654 655 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 653 def name @name end |
#permissions ⇒ Array<Google::Apis::ClassroomV1::GlobalPermission>
Global permissions of the user. Read-only.
Corresponds to the JSON property permissions
668 669 670 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 668 def @permissions end |
#photo_url ⇒ String
URL of user's profile photo. Read-only.
Corresponds to the JSON property photoUrl
663 664 665 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 663 def photo_url @photo_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
675 676 677 678 679 680 681 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 675 def update!(**args) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @email_address = args[:email_address] if args.key?(:email_address) @photo_url = args[:photo_url] if args.key?(:photo_url) @permissions = args[:permissions] if args.key?(:permissions) end |