Class: Google::Apis::CloudsearchV1::EnterpriseTopazSidekickMeetingNotesCardRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::EnterpriseTopazSidekickMeetingNotesCardRequest
- 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
Meeting notes card request.
Instance Attribute Summary collapse
-
#can_create_for ⇒ Array<String>
Who are the meeting notes created for.
-
#error ⇒ Google::Apis::CloudsearchV1::EnterpriseTopazSidekickMeetingNotesCardError
Errors in the creation of meeting notes.
-
#event ⇒ Google::Apis::CloudsearchV1::EnterpriseTopazSidekickAgendaEntry
An AgendaEntry, e.g., a Calendar Event.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseTopazSidekickMeetingNotesCardRequest
constructor
A new instance of EnterpriseTopazSidekickMeetingNotesCardRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseTopazSidekickMeetingNotesCardRequest
Returns a new instance of EnterpriseTopazSidekickMeetingNotesCardRequest.
2543 2544 2545 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2543 def initialize(**args) update!(**args) end |
Instance Attribute Details
#can_create_for ⇒ Array<String>
Who are the meeting notes created for.
Corresponds to the JSON property canCreateFor
2531 2532 2533 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2531 def can_create_for @can_create_for end |
#error ⇒ Google::Apis::CloudsearchV1::EnterpriseTopazSidekickMeetingNotesCardError
Errors in the creation of meeting notes.
Corresponds to the JSON property error
2536 2537 2538 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2536 def error @error end |
#event ⇒ Google::Apis::CloudsearchV1::EnterpriseTopazSidekickAgendaEntry
An AgendaEntry, e.g., a Calendar Event.
Corresponds to the JSON property event
2541 2542 2543 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2541 def event @event end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2548 2549 2550 2551 2552 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2548 def update!(**args) @can_create_for = args[:can_create_for] if args.key?(:can_create_for) @error = args[:error] if args.key?(:error) @event = args[:event] if args.key?(:event) end |