Class: Kaltura::KalturaReachReportInputFilter

Inherits:
KalturaReportInputFilter show all
Defined in:
lib/kaltura_plugins/kaltura_reach_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaReportInputFilter

#browser_family_in, #categories, #categories_ids_in, #cities_in, #country_in, #custom_var1in, #custom_var2in, #custom_var3in, #device_in, #entry_created_at_greater_than_or_equal, #entry_created_at_less_than_or_equal, #entry_id_in, #entry_operator, #interval, #keywords, #media_type_in, #operating_system_family_in, #owner_ids_in, #region_in, #search_in_admin_tags, #search_in_tags, #source_type_in, #time_zone_offset

Attributes inherited from KalturaReportInputBaseFilter

#from_date, #from_day, #to_date, #to_day

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#service_featureObject

Returns the value of attribute service_feature.



1259
1260
1261
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1259

def service_feature
  @service_feature
end

#service_typeObject

Returns the value of attribute service_type.



1258
1259
1260
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1258

def service_type
  @service_type
end

#turn_around_timeObject

Returns the value of attribute turn_around_time.



1260
1261
1262
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1260

def turn_around_time
  @turn_around_time
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1272

def from_xml(xml_element)
	super
	if xml_element.elements['serviceType'] != nil
		self.service_type = xml_element.elements['serviceType'].text
	end
	if xml_element.elements['serviceFeature'] != nil
		self.service_feature = xml_element.elements['serviceFeature'].text
	end
	if xml_element.elements['turnAroundTime'] != nil
		self.turn_around_time = xml_element.elements['turnAroundTime'].text
	end
end