Class: Kaltura::KalturaConversionProfileAssetParams

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

#asset_params_idObject

The id of the asset params



2041
2042
2043
# File 'lib/kaltura_types.rb', line 2041

def asset_params_id
  @asset_params_id
end

#conversion_profile_idObject

The id of the conversion profile



2038
2039
2040
# File 'lib/kaltura_types.rb', line 2038

def conversion_profile_id
  @conversion_profile_id
end

#delete_policyObject

Specifies how to treat the flavor after conversion is finished



2056
2057
2058
# File 'lib/kaltura_types.rb', line 2056

def delete_policy
  @delete_policy
end

#force_none_compliedObject

Starts conversion even if the decision layer reduced the configuration to comply with the source



2053
2054
2055
# File 'lib/kaltura_types.rb', line 2053

def force_none_complied
  @force_none_complied
end

#originObject

The ingestion origin of the asset params



2047
2048
2049
# File 'lib/kaltura_types.rb', line 2047

def origin
  @origin
end

#ready_behaviorObject

The ingestion origin of the asset params



2044
2045
2046
# File 'lib/kaltura_types.rb', line 2044

def ready_behavior
  @ready_behavior
end

#system_nameObject

Asset params system name



2050
2051
2052
# File 'lib/kaltura_types.rb', line 2050

def system_name
  @system_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
# File 'lib/kaltura_types.rb', line 2077

def from_xml(xml_element)
	super
	self.conversion_profile_id = xml_element.elements['conversionProfileId'].text
	self.asset_params_id = xml_element.elements['assetParamsId'].text
	self.ready_behavior = xml_element.elements['readyBehavior'].text
	self.origin = xml_element.elements['origin'].text
	self.system_name = xml_element.elements['systemName'].text
	self.force_none_complied = xml_element.elements['forceNoneComplied'].text
	self.delete_policy = xml_element.elements['deletePolicy'].text
end