Class: Kaltura::KalturaAkamaiProvisionJobData
- Inherits:
-
KalturaProvisionJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaProvisionJobData
- Kaltura::KalturaAkamaiProvisionJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#cpcode ⇒ Object
Returns the value of attribute cpcode.
-
#email_id ⇒ Object
Returns the value of attribute email_id.
-
#primary_contact ⇒ Object
Returns the value of attribute primary_contact.
-
#secondary_contact ⇒ Object
Returns the value of attribute secondary_contact.
-
#wsdl_password ⇒ Object
Returns the value of attribute wsdl_password.
-
#wsdl_username ⇒ Object
Returns the value of attribute wsdl_username.
Attributes inherited from KalturaProvisionJobData
#backup_encoder_ip, #backup_stream_id, #encoder_ip, #encoder_password, #encoder_username, #end_date, #media_type, #primary_broadcasting_url, #return_val, #rtmp, #secondary_broadcasting_url, #stream_id, #stream_name
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#cpcode ⇒ Object
Returns the value of attribute cpcode.
16554 16555 16556 |
# File 'lib/kaltura_types.rb', line 16554 def cpcode @cpcode end |
#email_id ⇒ Object
Returns the value of attribute email_id.
16555 16556 16557 |
# File 'lib/kaltura_types.rb', line 16555 def email_id @email_id end |
#primary_contact ⇒ Object
Returns the value of attribute primary_contact.
16556 16557 16558 |
# File 'lib/kaltura_types.rb', line 16556 def primary_contact @primary_contact end |
#secondary_contact ⇒ Object
Returns the value of attribute secondary_contact.
16557 16558 16559 |
# File 'lib/kaltura_types.rb', line 16557 def secondary_contact @secondary_contact end |
#wsdl_password ⇒ Object
Returns the value of attribute wsdl_password.
16553 16554 16555 |
# File 'lib/kaltura_types.rb', line 16553 def wsdl_password @wsdl_password end |
#wsdl_username ⇒ Object
Returns the value of attribute wsdl_username.
16552 16553 16554 |
# File 'lib/kaltura_types.rb', line 16552 def wsdl_username @wsdl_username end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 |
# File 'lib/kaltura_types.rb', line 16560 def from_xml(xml_element) super if xml_element.elements['wsdlUsername'] != nil self.wsdl_username = xml_element.elements['wsdlUsername'].text end if xml_element.elements['wsdlPassword'] != nil self.wsdl_password = xml_element.elements['wsdlPassword'].text end if xml_element.elements['cpcode'] != nil self.cpcode = xml_element.elements['cpcode'].text end if xml_element.elements['emailId'] != nil self.email_id = xml_element.elements['emailId'].text end if xml_element.elements['primaryContact'] != nil self.primary_contact = xml_element.elements['primaryContact'].text end if xml_element.elements['secondaryContact'] != nil self.secondary_contact = xml_element.elements['secondaryContact'].text end end |