Class: Google::Apis::CloudsearchV1::AppsDynamiteSharedMeetMetadata

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

Overview

Metadata specific for a Meet call that are required to generate call artifacts.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppsDynamiteSharedMeetMetadata

Returns a new instance of AppsDynamiteSharedMeetMetadata.



1850
1851
1852
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1850

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

Instance Attribute Details

#meeting_codeString

Required. A globally unique code (e.g. "cxv-zbgj-wzw") that points to a meeting space. Note: Meeting codes may be regenerated, which will cause old meeting codes to become invalid. Corresponds to the JSON property meetingCode

Returns:

  • (String)


1837
1838
1839
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1837

def meeting_code
  @meeting_code
end

#meeting_typeString

Required. Type of the meeting. This controls the chat client UX. Corresponds to the JSON property meetingType

Returns:

  • (String)


1842
1843
1844
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1842

def meeting_type
  @meeting_type
end

#meeting_urlString

Required. A URL, in the format "https://meet.google.com/*" (e.g. https://meet. google.com/cxv-zbgj-wzw), to identify and access the meeting space. Corresponds to the JSON property meetingUrl

Returns:

  • (String)


1848
1849
1850
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1848

def meeting_url
  @meeting_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1855
1856
1857
1858
1859
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1855

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