Class: Google::Apis::MeetV2::AnonymousUser

Inherits:
Object
  • Object
show all
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

User who joins anonymously (meaning not signed into a Google Account).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AnonymousUser

Returns a new instance of AnonymousUser.



55
56
57
# File 'lib/google/apis/meet_v2/classes.rb', line 55

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

Instance Attribute Details

#display_nameString

Output only. User provided name when they join a conference anonymously. Corresponds to the JSON property displayName

Returns:

  • (String)


53
54
55
# File 'lib/google/apis/meet_v2/classes.rb', line 53

def display_name
  @display_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



60
61
62
# File 'lib/google/apis/meet_v2/classes.rb', line 60

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
end