Class: Kaltura::KalturaThumbAsset

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

Direct Known Subclasses

KalturaTimedThumbAsset

Instance Attribute Summary collapse

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

#camelcase, #to_b, #to_params

Instance Attribute Details

#heightObject

The height of the Flavor Asset



5995
5996
5997
# File 'lib/kaltura_types.rb', line 5995

def height
  @height
end

#statusObject

The status of the asset



5997
5998
5999
# File 'lib/kaltura_types.rb', line 5997

def status
  @status
end

#thumb_params_idObject

The Flavor Params used to create this Flavor Asset



5991
5992
5993
# File 'lib/kaltura_types.rb', line 5991

def thumb_params_id
  @thumb_params_id
end

#widthObject

The width of the Flavor Asset



5993
5994
5995
# File 'lib/kaltura_types.rb', line 5993

def width
  @width
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
# File 'lib/kaltura_types.rb', line 6012

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