Class: Google::Apis::CloudsearchV1::RecordingEvent
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::RecordingEvent
- 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
A recording event is something that happens to the recording in a conference.
Instance Attribute Summary collapse
-
#device_id ⇒ String
The initiator of the latest event of the recording.
-
#type ⇒ String
The type of event.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RecordingEvent
constructor
A new instance of RecordingEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RecordingEvent
Returns a new instance of RecordingEvent.
16947 16948 16949 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16947 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_id ⇒ String
The initiator of the latest event of the recording. It will be set for all
user events (type
is 100-199) and unset for all server events (type
is 200-
299).
Corresponds to the JSON property deviceId
16940 16941 16942 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16940 def device_id @device_id end |
#type ⇒ String
The type of event.
Corresponds to the JSON property type
16945 16946 16947 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16945 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16952 16953 16954 16955 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16952 def update!(**args) @device_id = args[:device_id] if args.key?(:device_id) @type = args[:type] if args.key?(:type) end |