Class: Google::Apis::CloudsearchV1::RecordingEvent

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

A recording event is something that happens to the recording in a conference.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RecordingEvent

Returns a new instance of RecordingEvent.



17043
17044
17045
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17043

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#device_idString

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

Returns:

  • (String)


17036
17037
17038
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17036

def device_id
  @device_id
end

#typeString

The type of event. Corresponds to the JSON property type

Returns:

  • (String)


17041
17042
17043
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17041

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17048
17049
17050
17051
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17048

def update!(**args)
  @device_id = args[:device_id] if args.key?(:device_id)
  @type = args[:type] if args.key?(:type)
end