Class: Kaltura::KalturaFlavorAssetWithParams

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

#entry_idObject

The entry id



3047
3048
3049
# File 'lib/kaltura_types.rb', line 3047

def entry_id
  @entry_id
end

#flavor_assetObject

The Flavor Asset (Can be null when there are params without asset)



3041
3042
3043
# File 'lib/kaltura_types.rb', line 3041

def flavor_asset
  @flavor_asset
end

#flavor_paramsObject

The Flavor Params



3044
3045
3046
# File 'lib/kaltura_types.rb', line 3044

def flavor_params
  @flavor_params
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3050
3051
3052
3053
3054
3055
# File 'lib/kaltura_types.rb', line 3050

def from_xml(xml_element)
	super
	self.flavor_asset = KalturaClientBase.object_from_xml(xml_element.elements['flavorAsset'], 'KalturaFlavorAsset')
	self.flavor_params = KalturaClientBase.object_from_xml(xml_element.elements['flavorParams'], 'KalturaFlavorParams')
	self.entry_id = xml_element.elements['entryId'].text
end