Class: Kaltura::KalturaAssetParamsOutput

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

Instance Attribute Summary collapse

Attributes inherited from KalturaAssetParams

#created_at, #description, #id, #is_system_default, #media_parser_type, #name, #partner_id, #remote_storage_profile_ids, #required_permissions, #source_asset_params_ids, #source_remote_storage_profile_id, #system_name, #tags

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#asset_idObject

Returns the value of attribute asset_id.



6954
6955
6956
# File 'lib/kaltura_types.rb', line 6954

def asset_id
  @asset_id
end

#asset_params_idObject

Returns the value of attribute asset_params_id.



6952
6953
6954
# File 'lib/kaltura_types.rb', line 6952

def asset_params_id
  @asset_params_id
end

#asset_params_versionObject

Returns the value of attribute asset_params_version.



6953
6954
6955
# File 'lib/kaltura_types.rb', line 6953

def asset_params_version
  @asset_params_version
end

#asset_versionObject

Returns the value of attribute asset_version.



6955
6956
6957
# File 'lib/kaltura_types.rb', line 6955

def asset_version
  @asset_version
end

#formatObject

The container format of the Flavor Params



6959
6960
6961
# File 'lib/kaltura_types.rb', line 6959

def format
  @format
end

#ready_behaviorObject

Returns the value of attribute ready_behavior.



6956
6957
6958
# File 'lib/kaltura_types.rb', line 6956

def ready_behavior
  @ready_behavior
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6968
6969
6970
6971
6972
6973
6974
6975
6976
# File 'lib/kaltura_types.rb', line 6968

def from_xml(xml_element)
	super
	self.asset_params_id = xml_element.elements['assetParamsId'].text
	self.asset_params_version = xml_element.elements['assetParamsVersion'].text
	self.asset_id = xml_element.elements['assetId'].text
	self.asset_version = xml_element.elements['assetVersion'].text
	self.ready_behavior = xml_element.elements['readyBehavior'].text
	self.format = xml_element.elements['format'].text
end