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.



2444
2445
2446
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2444

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)


2432
2433
2434
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2432

def description
  @description
end

#eventGoogle::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

#reasonString

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

Returns:

  • (String)


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