Class: Google::Apis::CloudsearchV1::EnterpriseTopazSidekickMeetingNotesCardError

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

Errors in the creation of meeting notes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnterpriseTopazSidekickMeetingNotesCardError

Returns a new instance of EnterpriseTopazSidekickMeetingNotesCardError.



2475
2476
2477
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2475

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

Instance Attribute Details

#descriptionString

The description of the reason why create-meeting-notes failed. Corresponds to the JSON property description

Returns:

  • (String)


2463
2464
2465
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2463

def description
  @description
end

#eventGoogle::Apis::CloudsearchV1::EnterpriseTopazSidekickAgendaEntry

An AgendaEntry, e.g., a Calendar Event. Corresponds to the JSON property event



2468
2469
2470
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2468

def event
  @event
end

#reasonString

The reason why create-meeting-notes failed. Corresponds to the JSON property reason

Returns:

  • (String)


2473
2474
2475
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2473

def reason
  @reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2480
2481
2482
2483
2484
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2480

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