Class: Kaltura::KalturaReachReportInputFilter
- Inherits:
-
KalturaReportInputFilter
- Object
- KalturaObjectBase
- KalturaReportInputBaseFilter
- KalturaReportInputFilter
- Kaltura::KalturaReachReportInputFilter
- Defined in:
- lib/kaltura_plugins/kaltura_reach_client_plugin.rb
Instance Attribute Summary collapse
-
#service_feature ⇒ Object
Returns the value of attribute service_feature.
-
#service_type ⇒ Object
Returns the value of attribute service_type.
-
#turn_around_time ⇒ Object
Returns the value of attribute turn_around_time.
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
Instance Attribute Details
#service_feature ⇒ Object
Returns the value of attribute service_feature.
1192 1193 1194 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1192 def service_feature @service_feature end |
#service_type ⇒ Object
Returns the value of attribute service_type.
1191 1192 1193 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1191 def service_type @service_type end |
#turn_around_time ⇒ Object
Returns the value of attribute turn_around_time.
1193 1194 1195 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1193 def turn_around_time @turn_around_time end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1205 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 |