Class: Kaltura::KalturaThumbParamsOutput

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

Instance Attribute Summary collapse

Attributes inherited from KalturaThumbParams

#background_color, #crop_height, #crop_type, #crop_width, #crop_x, #crop_y, #density, #format, #height, #interval, #quality, #scale_height, #scale_width, #source_params_id, #strip_profiles, #video_offset, #video_offset_in_percentage, #width

Attributes inherited from KalturaAssetParams

#created_at, #description, #id, #is_system_default, #media_parser_type, #name, #partner_id, #remote_storage_profile_ids, #required_permissions, #source_asset_params_ids, #source_remote_storage_profile_id, #system_name, #tags

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#rotateObject

Returns the value of attribute rotate.



6033
6034
6035
# File 'lib/kaltura_types.rb', line 6033

def rotate
  @rotate
end

#thumb_asset_idObject

Returns the value of attribute thumb_asset_id.



6031
6032
6033
# File 'lib/kaltura_types.rb', line 6031

def thumb_asset_id
  @thumb_asset_id
end

#thumb_asset_versionObject

Returns the value of attribute thumb_asset_version.



6032
6033
6034
# File 'lib/kaltura_types.rb', line 6032

def thumb_asset_version
  @thumb_asset_version
end

#thumb_params_idObject

Returns the value of attribute thumb_params_id.



6029
6030
6031
# File 'lib/kaltura_types.rb', line 6029

def thumb_params_id
  @thumb_params_id
end

#thumb_params_versionObject

Returns the value of attribute thumb_params_version.



6030
6031
6032
# File 'lib/kaltura_types.rb', line 6030

def thumb_params_version
  @thumb_params_version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
# File 'lib/kaltura_types.rb', line 6042

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['thumbParamsVersion'] != nil
		self.thumb_params_version = xml_element.elements['thumbParamsVersion'].text
	end
	if xml_element.elements['thumbAssetId'] != nil
		self.thumb_asset_id = xml_element.elements['thumbAssetId'].text
	end
	if xml_element.elements['thumbAssetVersion'] != nil
		self.thumb_asset_version = xml_element.elements['thumbAssetVersion'].text
	end
	if xml_element.elements['rotate'] != nil
		self.rotate = xml_element.elements['rotate'].text
	end
end