Class: Google::Apis::CloudsearchV1::AppsDynamiteSharedMeetMetadata
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsDynamiteSharedMeetMetadata
- 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
-
#meeting_code ⇒ String
Required.
-
#meeting_type ⇒ String
Required.
-
#meeting_url ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsDynamiteSharedMeetMetadata
constructor
A new instance of AppsDynamiteSharedMeetMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsDynamiteSharedMeetMetadata
Returns a new instance of AppsDynamiteSharedMeetMetadata.
1906 1907 1908 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1906 def initialize(**args) update!(**args) end |
Instance Attribute Details
#meeting_code ⇒ String
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
1893 1894 1895 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1893 def meeting_code @meeting_code end |
#meeting_type ⇒ String
Required. Type of the meeting. This controls the chat client UX.
Corresponds to the JSON property meetingType
1898 1899 1900 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1898 def meeting_type @meeting_type end |
#meeting_url ⇒ String
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
1904 1905 1906 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1904 def meeting_url @meeting_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1911 1912 1913 1914 1915 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1911 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 |