Class: Kaltura::KalturaConvertCollectionFlavorData

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#audio_bitrateObject

Returns the value of attribute audio_bitrate.



2095
2096
2097
# File 'lib/kaltura_types.rb', line 2095

def audio_bitrate
  @audio_bitrate
end

#dest_file_sync_local_pathObject

Returns the value of attribute dest_file_sync_local_path.



2096
2097
2098
# File 'lib/kaltura_types.rb', line 2096

def dest_file_sync_local_path
  @dest_file_sync_local_path
end

#dest_file_sync_remote_urlObject

Returns the value of attribute dest_file_sync_remote_url.



2097
2098
2099
# File 'lib/kaltura_types.rb', line 2097

def dest_file_sync_remote_url
  @dest_file_sync_remote_url
end

#flavor_asset_idObject

Returns the value of attribute flavor_asset_id.



2091
2092
2093
# File 'lib/kaltura_types.rb', line 2091

def flavor_asset_id
  @flavor_asset_id
end

#flavor_params_output_idObject

Returns the value of attribute flavor_params_output_id.



2092
2093
2094
# File 'lib/kaltura_types.rb', line 2092

def flavor_params_output_id
  @flavor_params_output_id
end

#ready_behaviorObject

Returns the value of attribute ready_behavior.



2093
2094
2095
# File 'lib/kaltura_types.rb', line 2093

def ready_behavior
  @ready_behavior
end

#video_bitrateObject

Returns the value of attribute video_bitrate.



2094
2095
2096
# File 'lib/kaltura_types.rb', line 2094

def video_bitrate
  @video_bitrate
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
# File 'lib/kaltura_types.rb', line 2112

def from_xml(xml_element)
	super
	self.flavor_asset_id = xml_element.elements['flavorAssetId'].text
	self.flavor_params_output_id = xml_element.elements['flavorParamsOutputId'].text
	self.ready_behavior = xml_element.elements['readyBehavior'].text
	self.video_bitrate = xml_element.elements['videoBitrate'].text
	self.audio_bitrate = xml_element.elements['audioBitrate'].text
	self.dest_file_sync_local_path = xml_element.elements['destFileSyncLocalPath'].text
	self.dest_file_sync_remote_url = xml_element.elements['destFileSyncRemoteUrl'].text
end