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.
2512 2513 2514 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2512 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
2500 2501 2502 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2500 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
2505 2506 2507 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2505 def error @error end |
#event ⇒ Google::Apis::CloudsearchV1::EnterpriseTopazSidekickAgendaEntry
An AgendaEntry, e.g., a Calendar Event.
Corresponds to the JSON property event
2510 2511 2512 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2510 def event @event end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2517 2518 2519 2520 2521 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2517 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 |