Class: Google::Apis::MeetV2::SignedinUser
- Inherits:
-
Object
- Object
- Google::Apis::MeetV2::SignedinUser
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/meet_v2/classes.rb,
lib/google/apis/meet_v2/representations.rb,
lib/google/apis/meet_v2/representations.rb
Overview
A signed-in user can be: a) An individual joining from a personal computer, mobile device, or through companion mode. b) A robot account used by conference room devices.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Output only.
-
#user ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SignedinUser
constructor
A new instance of SignedinUser.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SignedinUser
Returns a new instance of SignedinUser.
537 538 539 |
# File 'lib/google/apis/meet_v2/classes.rb', line 537 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Output only. For a personal device, it's the user's first name and last name.
For a robot account, it's the administrator-specified device name. For example,
"Altostrat Room".
Corresponds to the JSON property displayName
529 530 531 |
# File 'lib/google/apis/meet_v2/classes.rb', line 529 def display_name @display_name end |
#user ⇒ String
Output only. Unique ID for the user. Interoperable with Admin SDK API and
People API. Format: users/
user`
Corresponds to the JSON property
user`
535 536 537 |
# File 'lib/google/apis/meet_v2/classes.rb', line 535 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
542 543 544 545 |
# File 'lib/google/apis/meet_v2/classes.rb', line 542 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @user = args[:user] if args.key?(:user) end |