Class: Kaltura::KalturaReport
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaReport
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#created_at ⇒ Object
Creation date as Unix timestamp (In seconds).
-
#description ⇒ Object
Report description.
-
#id ⇒ Object
Report id.
-
#name ⇒ Object
Report name.
-
#partner_id ⇒ Object
Partner id associated with the report.
-
#query ⇒ Object
Report query.
-
#system_name ⇒ Object
Used to identify system reports in a friendly way.
-
#updated_at ⇒ Object
Last update date as Unix timestamp (In seconds).
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#created_at ⇒ Object
Creation date as Unix timestamp (In seconds)
8262 8263 8264 |
# File 'lib/kaltura_types.rb', line 8262 def created_at @created_at end |
#description ⇒ Object
Report description
8258 8259 8260 |
# File 'lib/kaltura_types.rb', line 8258 def description @description end |
#id ⇒ Object
Report id
8250 8251 8252 |
# File 'lib/kaltura_types.rb', line 8250 def id @id end |
#name ⇒ Object
Report name
8254 8255 8256 |
# File 'lib/kaltura_types.rb', line 8254 def name @name end |
#partner_id ⇒ Object
Partner id associated with the report
8252 8253 8254 |
# File 'lib/kaltura_types.rb', line 8252 def partner_id @partner_id end |
#query ⇒ Object
Report query
8260 8261 8262 |
# File 'lib/kaltura_types.rb', line 8260 def query @query end |
#system_name ⇒ Object
Used to identify system reports in a friendly way
8256 8257 8258 |
# File 'lib/kaltura_types.rb', line 8256 def system_name @system_name end |
#updated_at ⇒ Object
Last update date as Unix timestamp (In seconds)
8264 8265 8266 |
# File 'lib/kaltura_types.rb', line 8264 def updated_at @updated_at end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 |
# File 'lib/kaltura_types.rb', line 8279 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end if xml_element.elements['partnerId'] != nil self.partner_id = xml_element.elements['partnerId'].text end if xml_element.elements['name'] != nil self.name = xml_element.elements['name'].text end if xml_element.elements['systemName'] != nil self.system_name = xml_element.elements['systemName'].text end if xml_element.elements['description'] != nil self.description = xml_element.elements['description'].text end if xml_element.elements['query'] != nil self.query = xml_element.elements['query'].text end if xml_element.elements['createdAt'] != nil self.created_at = xml_element.elements['createdAt'].text end if xml_element.elements['updatedAt'] != nil self.updated_at = xml_element.elements['updatedAt'].text end end |