Class: Google::Apis::CloudsearchV1::EnterpriseTopazSidekickMeetingNotesCardProto
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::EnterpriseTopazSidekickMeetingNotesCardProto
- 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
Information about the meeting notes created.
Instance Attribute Summary collapse
-
#event ⇒ Google::Apis::CloudsearchV1::EnterpriseTopazSidekickAgendaEntry
An AgendaEntry, e.g., a Calendar Event.
-
#file_id ⇒ String
Google Drive ID (a.k.a. resource ID) of the file.
-
#title ⇒ String
Title we want to show for meeting notes in the answer card Corresponds to the JSON property
title
. -
#url ⇒ String
New URL.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseTopazSidekickMeetingNotesCardProto
constructor
A new instance of EnterpriseTopazSidekickMeetingNotesCardProto.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseTopazSidekickMeetingNotesCardProto
Returns a new instance of EnterpriseTopazSidekickMeetingNotesCardProto.
2480 2481 2482 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2480 def initialize(**args) update!(**args) end |
Instance Attribute Details
#event ⇒ Google::Apis::CloudsearchV1::EnterpriseTopazSidekickAgendaEntry
An AgendaEntry, e.g., a Calendar Event.
Corresponds to the JSON property event
2463 2464 2465 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2463 def event @event end |
#file_id ⇒ String
Google Drive ID (a.k.a. resource ID) of the file.
Corresponds to the JSON property fileId
2468 2469 2470 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2468 def file_id @file_id end |
#title ⇒ String
Title we want to show for meeting notes in the answer card
Corresponds to the JSON property title
2473 2474 2475 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2473 def title @title end |
#url ⇒ String
New URL.
Corresponds to the JSON property url
2478 2479 2480 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2478 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2485 2486 2487 2488 2489 2490 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2485 def update!(**args) @event = args[:event] if args.key?(:event) @file_id = args[:file_id] if args.key?(:file_id) @title = args[:title] if args.key?(:title) @url = args[:url] if args.key?(:url) end |