Class: Kaltura::KalturaEntryServerNode
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaEntryServerNode
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
KalturaConferenceEntryServerNode, KalturaLiveEntryServerNode, KalturaSipEntryServerNode, KalturaTaskEntryServerNode
Instance Attribute Summary collapse
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#entry_id ⇒ Object
Returns the value of attribute entry_id.
-
#id ⇒ Object
unique auto-generated identifier.
-
#partner_id ⇒ Object
Returns the value of attribute partner_id.
-
#server_node_id ⇒ Object
Returns the value of attribute server_node_id.
-
#server_type ⇒ Object
Returns the value of attribute server_type.
-
#status ⇒ Object
Returns the value of attribute status.
-
#updated_at ⇒ Object
Returns the value of attribute updated_at.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#created_at ⇒ Object
Returns the value of attribute created_at.
4460 4461 4462 |
# File 'lib/kaltura_types.rb', line 4460 def created_at @created_at end |
#entry_id ⇒ Object
Returns the value of attribute entry_id.
4457 4458 4459 |
# File 'lib/kaltura_types.rb', line 4457 def entry_id @entry_id end |
#id ⇒ Object
unique auto-generated identifier
4456 4457 4458 |
# File 'lib/kaltura_types.rb', line 4456 def id @id end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
4459 4460 4461 |
# File 'lib/kaltura_types.rb', line 4459 def partner_id @partner_id end |
#server_node_id ⇒ Object
Returns the value of attribute server_node_id.
4458 4459 4460 |
# File 'lib/kaltura_types.rb', line 4458 def server_node_id @server_node_id end |
#server_type ⇒ Object
Returns the value of attribute server_type.
4463 4464 4465 |
# File 'lib/kaltura_types.rb', line 4463 def server_type @server_type end |
#status ⇒ Object
Returns the value of attribute status.
4462 4463 4464 |
# File 'lib/kaltura_types.rb', line 4462 def status @status end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
4461 4462 4463 |
# File 'lib/kaltura_types.rb', line 4461 def updated_at @updated_at end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 |
# File 'lib/kaltura_types.rb', line 4484 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end if xml_element.elements['entryId'] != nil self.entry_id = xml_element.elements['entryId'].text end if xml_element.elements['serverNodeId'] != nil self.server_node_id = xml_element.elements['serverNodeId'].text end if xml_element.elements['partnerId'] != nil self.partner_id = xml_element.elements['partnerId'].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 if xml_element.elements['status'] != nil self.status = xml_element.elements['status'].text end if xml_element.elements['serverType'] != nil self.server_type = xml_element.elements['serverType'].text end end |