Class: Kaltura::KalturaLiveReportExportParams
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaLiveReportExportParams
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#application_url_template ⇒ Object
Optional argument that allows controlling the prefix of the exported csv url.
-
#entry_ids ⇒ Object
Returns the value of attribute entry_ids.
-
#recpient_email ⇒ Object
Returns the value of attribute recpient_email.
-
#time_zone_offset ⇒ Object
Time zone offset in minutes (between client to UTC).
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#application_url_template ⇒ Object
Optional argument that allows controlling the prefix of the exported csv url
6834 6835 6836 |
# File 'lib/kaltura_types.rb', line 6834 def application_url_template @application_url_template end |
#entry_ids ⇒ Object
Returns the value of attribute entry_ids.
6829 6830 6831 |
# File 'lib/kaltura_types.rb', line 6829 def entry_ids @entry_ids end |
#recpient_email ⇒ Object
Returns the value of attribute recpient_email.
6830 6831 6832 |
# File 'lib/kaltura_types.rb', line 6830 def recpient_email @recpient_email end |
#time_zone_offset ⇒ Object
Time zone offset in minutes (between client to UTC)
6832 6833 6834 |
# File 'lib/kaltura_types.rb', line 6832 def time_zone_offset @time_zone_offset end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 |
# File 'lib/kaltura_types.rb', line 6840 def from_xml(xml_element) super if xml_element.elements['entryIds'] != nil self.entry_ids = xml_element.elements['entryIds'].text end if xml_element.elements['recpientEmail'] != nil self.recpient_email = xml_element.elements['recpientEmail'].text end if xml_element.elements['timeZoneOffset'] != nil self.time_zone_offset = xml_element.elements['timeZoneOffset'].text end if xml_element.elements['applicationUrlTemplate'] != nil self.application_url_template = xml_element.elements['applicationUrlTemplate'].text end end |