Class: Google::Apis::ChatV1::MeetSpaceLinkData

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb

Overview

Data for Meet space links.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MeetSpaceLinkData

Returns a new instance of MeetSpaceLinkData.



5111
5112
5113
# File 'lib/google/apis/chat_v1/classes.rb', line 5111

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

Instance Attribute Details

#huddle_statusString

Optional. Output only. If the Meet is a Huddle, indicates the status of the huddle. Otherwise, this is unset. Corresponds to the JSON property huddleStatus

Returns:

  • (String)


5099
5100
5101
# File 'lib/google/apis/chat_v1/classes.rb', line 5099

def huddle_status
  @huddle_status
end

#meeting_codeString

Meeting code of the linked Meet space. Corresponds to the JSON property meetingCode

Returns:

  • (String)


5104
5105
5106
# File 'lib/google/apis/chat_v1/classes.rb', line 5104

def meeting_code
  @meeting_code
end

#typeString

Indicates the type of the Meet space. Corresponds to the JSON property type

Returns:

  • (String)


5109
5110
5111
# File 'lib/google/apis/chat_v1/classes.rb', line 5109

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5116
5117
5118
5119
5120
# File 'lib/google/apis/chat_v1/classes.rb', line 5116

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