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.



2711
2712
2713
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2711

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)


2703
2704
2705
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2703

def meeting_code
  @meeting_code
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)


2709
2710
2711
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2709

def meeting_url
  @meeting_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2716
2717
2718
2719
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2716

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