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.



4763
4764
4765
# File 'lib/google/apis/chat_v1/classes.rb', line 4763

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)


4751
4752
4753
# File 'lib/google/apis/chat_v1/classes.rb', line 4751

def huddle_status
  @huddle_status
end

#meeting_codeString

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

Returns:

  • (String)


4756
4757
4758
# File 'lib/google/apis/chat_v1/classes.rb', line 4756

def meeting_code
  @meeting_code
end

#typeString

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

Returns:

  • (String)


4761
4762
4763
# File 'lib/google/apis/chat_v1/classes.rb', line 4761

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4768
4769
4770
4771
4772
# File 'lib/google/apis/chat_v1/classes.rb', line 4768

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