Class: Google::Apis::CloudsearchV1::EnterpriseTopazSidekickMeetingNotesCardError
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::EnterpriseTopazSidekickMeetingNotesCardError
- 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
Errors in the creation of meeting notes.
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the reason why create-meeting-notes failed.
-
#event ⇒ Google::Apis::CloudsearchV1::EnterpriseTopazSidekickAgendaEntry
An AgendaEntry, e.g., a Calendar Event.
-
#reason ⇒ String
The reason why create-meeting-notes failed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseTopazSidekickMeetingNotesCardError
constructor
A new instance of EnterpriseTopazSidekickMeetingNotesCardError.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseTopazSidekickMeetingNotesCardError
Returns a new instance of EnterpriseTopazSidekickMeetingNotesCardError.
2444 2445 2446 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2444 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
The description of the reason why create-meeting-notes failed.
Corresponds to the JSON property description
2432 2433 2434 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2432 def description @description end |
#event ⇒ Google::Apis::CloudsearchV1::EnterpriseTopazSidekickAgendaEntry
An AgendaEntry, e.g., a Calendar Event.
Corresponds to the JSON property event
2437 2438 2439 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2437 def event @event end |
#reason ⇒ String
The reason why create-meeting-notes failed.
Corresponds to the JSON property reason
2442 2443 2444 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2442 def reason @reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2449 2450 2451 2452 2453 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2449 def update!(**args) @description = args[:description] if args.key?(:description) @event = args[:event] if args.key?(:event) @reason = args[:reason] if args.key?(:reason) end |