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)
8040 8041 8042 |
# File 'lib/kaltura_types.rb', line 8040 def created_at @created_at end |
#description ⇒ Object
Report description
8036 8037 8038 |
# File 'lib/kaltura_types.rb', line 8036 def description @description end |
#id ⇒ Object
Report id
8028 8029 8030 |
# File 'lib/kaltura_types.rb', line 8028 def id @id end |
#name ⇒ Object
Report name
8032 8033 8034 |
# File 'lib/kaltura_types.rb', line 8032 def name @name end |
#partner_id ⇒ Object
Partner id associated with the report
8030 8031 8032 |
# File 'lib/kaltura_types.rb', line 8030 def partner_id @partner_id end |
#query ⇒ Object
Report query
8038 8039 8040 |
# File 'lib/kaltura_types.rb', line 8038 def query @query end |
#system_name ⇒ Object
Used to identify system reports in a friendly way
8034 8035 8036 |
# File 'lib/kaltura_types.rb', line 8034 def system_name @system_name end |
#updated_at ⇒ Object
Last update date as Unix timestamp (In seconds)
8042 8043 8044 |
# File 'lib/kaltura_types.rb', line 8042 def updated_at @updated_at end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 |
# File 'lib/kaltura_types.rb', line 8057 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 |