Class: Kaltura::KalturaAkamaiProvisionJobData

Inherits:
KalturaProvisionJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

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

#camelcase, #to_b, #to_params

Instance Attribute Details

#cpcodeObject

Returns the value of attribute cpcode.



15648
15649
15650
# File 'lib/kaltura_types.rb', line 15648

def cpcode
  @cpcode
end

#email_idObject

Returns the value of attribute email_id.



15649
15650
15651
# File 'lib/kaltura_types.rb', line 15649

def email_id
  @email_id
end

#primary_contactObject

Returns the value of attribute primary_contact.



15650
15651
15652
# File 'lib/kaltura_types.rb', line 15650

def primary_contact
  @primary_contact
end

#secondary_contactObject

Returns the value of attribute secondary_contact.



15651
15652
15653
# File 'lib/kaltura_types.rb', line 15651

def secondary_contact
  @secondary_contact
end

#wsdl_passwordObject

Returns the value of attribute wsdl_password.



15647
15648
15649
# File 'lib/kaltura_types.rb', line 15647

def wsdl_password
  @wsdl_password
end

#wsdl_usernameObject

Returns the value of attribute wsdl_username.



15646
15647
15648
# File 'lib/kaltura_types.rb', line 15646

def wsdl_username
  @wsdl_username
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



15654
15655
15656
15657
15658
15659
15660
15661
15662
15663
15664
15665
15666
15667
15668
15669
15670
15671
15672
15673
15674
# File 'lib/kaltura_types.rb', line 15654

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