class Kaltura::KalturaLiveReportExportParams

Attributes

application_url_template[RW]

Optional argument that allows controlling the prefix of the exported csv url

entry_ids[RW]
recpient_email[RW]
time_zone_offset[RW]

Time zone offset in minutes (between client to UTC)

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 6697
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
time_zone_offset=(val) click to toggle source
# File lib/kaltura_types.rb, line 6693
def time_zone_offset=(val)
        @time_zone_offset = val.to_i
end