class Kaltura::KalturaGenericDistributionProviderAction
Attributes
action[RW]
created_at[RW]
Generic distribution provider action creation date as Unix timestamp (In seconds)
editable_fields[RW]
generic_distribution_provider_id[RW]
id[RW]
Auto generated
mandatory_fields[RW]
mrss_transformer[RW]
mrss_validator[RW]
protocol[RW]
remote_password[RW]
remote_path[RW]
remote_username[RW]
results_parser[RW]
results_transformer[RW]
server_address[RW]
status[RW]
updated_at[RW]
Generic distribution provider action last update date as Unix timestamp (In seconds)
Public Instance Methods
action=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 899 def action=(val) @action = val.to_i end
created_at=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 890 def created_at=(val) @created_at = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 912 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].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['genericDistributionProviderId'] != nil self.generic_distribution_provider_id = xml_element.elements['genericDistributionProviderId'].text end if xml_element.elements['action'] != nil self.action = xml_element.elements['action'].text end if xml_element.elements['status'] != nil self.status = xml_element.elements['status'].text end if xml_element.elements['resultsParser'] != nil self.results_parser = xml_element.elements['resultsParser'].text end if xml_element.elements['protocol'] != nil self.protocol = xml_element.elements['protocol'].text end if xml_element.elements['serverAddress'] != nil self.server_address = xml_element.elements['serverAddress'].text end if xml_element.elements['remotePath'] != nil self.remote_path = xml_element.elements['remotePath'].text end if xml_element.elements['remoteUsername'] != nil self.remote_username = xml_element.elements['remoteUsername'].text end if xml_element.elements['remotePassword'] != nil self.remote_password = xml_element.elements['remotePassword'].text end if xml_element.elements['editableFields'] != nil self.editable_fields = xml_element.elements['editableFields'].text end if xml_element.elements['mandatoryFields'] != nil self.mandatory_fields = xml_element.elements['mandatoryFields'].text end if xml_element.elements['mrssTransformer'] != nil self.mrss_transformer = xml_element.elements['mrssTransformer'].text end if xml_element.elements['mrssValidator'] != nil self.mrss_validator = xml_element.elements['mrssValidator'].text end if xml_element.elements['resultsTransformer'] != nil self.results_transformer = xml_element.elements['resultsTransformer'].text end end
generic_distribution_provider_id=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 896 def generic_distribution_provider_id=(val) @generic_distribution_provider_id = val.to_i end
id=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 887 def id=(val) @id = val.to_i end
protocol=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 908 def protocol=(val) @protocol = val.to_i end
results_parser=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 905 def results_parser=(val) @results_parser = val.to_i end
status=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 902 def status=(val) @status = val.to_i end
updated_at=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 893 def updated_at=(val) @updated_at = val.to_i end