Class: Google::Apis::CloudsearchV1::AppsDynamiteSharedCallAnnotationData
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsDynamiteSharedCallAnnotationData
- 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
Data used to render Meet or Google Voice chips in Chat. See go/dynamite- calling-artifacts-in-chat.
Instance Attribute Summary collapse
-
#call_ended_timestamp ⇒ String
Timestamp when the call ended.
-
#call_metadata ⇒ Google::Apis::CloudsearchV1::AppsDynamiteSharedCallMetadata
Metadata required to generate call artifacts.
-
#call_status ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsDynamiteSharedCallAnnotationData
constructor
A new instance of AppsDynamiteSharedCallAnnotationData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsDynamiteSharedCallAnnotationData
Returns a new instance of AppsDynamiteSharedCallAnnotationData.
1113 1114 1115 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#call_ended_timestamp ⇒ String
Timestamp when the call ended. Used to render the call ended system message.
Corresponds to the JSON property callEndedTimestamp
1099 1100 1101 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1099 def @call_ended_timestamp end |
#call_metadata ⇒ Google::Apis::CloudsearchV1::AppsDynamiteSharedCallMetadata
Metadata required to generate call artifacts. This can either be the metadata
for a Meet or, in the future, Google Voice call.
Corresponds to the JSON property callMetadata
1105 1106 1107 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1105 def @call_metadata end |
#call_status ⇒ String
Required. Indicates the call status for the space. Used to determine the chip'
s state.
Corresponds to the JSON property callStatus
1111 1112 1113 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1111 def call_status @call_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1118 1119 1120 1121 1122 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1118 def update!(**args) @call_ended_timestamp = args[:call_ended_timestamp] if args.key?(:call_ended_timestamp) @call_metadata = args[:call_metadata] if args.key?(:call_metadata) @call_status = args[:call_status] if args.key?(:call_status) end |