Class: Kaltura::KalturaThumbAsset
- Inherits:
-
KalturaAsset
- Object
- KalturaObjectBase
- KalturaAsset
- Kaltura::KalturaThumbAsset
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#height ⇒ Object
The height of the Flavor Asset.
-
#status ⇒ Object
The status of the asset.
-
#thumb_params_id ⇒ Object
The Flavor Params used to create this Flavor Asset.
-
#width ⇒ Object
The width of the Flavor Asset.
Attributes inherited from KalturaAsset
#actual_source_asset_params_ids, #created_at, #deleted_at, #description, #entry_id, #file_ext, #id, #partner_data, #partner_description, #partner_id, #size, #tags, #updated_at, #version
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#height ⇒ Object
The height of the Flavor Asset
6065 6066 6067 |
# File 'lib/kaltura_types.rb', line 6065 def height @height end |
#status ⇒ Object
The status of the asset
6068 6069 6070 |
# File 'lib/kaltura_types.rb', line 6068 def status @status end |
#thumb_params_id ⇒ Object
The Flavor Params used to create this Flavor Asset
6059 6060 6061 |
# File 'lib/kaltura_types.rb', line 6059 def thumb_params_id @thumb_params_id end |
#width ⇒ Object
The width of the Flavor Asset
6062 6063 6064 |
# File 'lib/kaltura_types.rb', line 6062 def width @width end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6083 6084 6085 6086 6087 6088 6089 |
# File 'lib/kaltura_types.rb', line 6083 def from_xml(xml_element) super self.thumb_params_id = xml_element.elements['thumbParamsId'].text self.width = xml_element.elements['width'].text self.height = xml_element.elements['height'].text self.status = xml_element.elements['status'].text end |