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, #size_in_bytes, #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
6124 6125 6126 |
# File 'lib/kaltura_types.rb', line 6124 def height @height end |
#status ⇒ Object
The status of the asset
6126 6127 6128 |
# File 'lib/kaltura_types.rb', line 6126 def status @status end |
#thumb_params_id ⇒ Object
The Flavor Params used to create this Flavor Asset
6120 6121 6122 |
# File 'lib/kaltura_types.rb', line 6120 def thumb_params_id @thumb_params_id end |
#width ⇒ Object
The width of the Flavor Asset
6122 6123 6124 |
# File 'lib/kaltura_types.rb', line 6122 def width @width end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 |
# File 'lib/kaltura_types.rb', line 6141 def from_xml(xml_element) super if xml_element.elements['thumbParamsId'] != nil self.thumb_params_id = xml_element.elements['thumbParamsId'].text end if xml_element.elements['width'] != nil self.width = xml_element.elements['width'].text end if xml_element.elements['height'] != nil self.height = xml_element.elements['height'].text end if xml_element.elements['status'] != nil self.status = xml_element.elements['status'].text end end |