class Kaltura::KalturaAssetParams
Attributes
created_at[RW]
Creation date as Unix timestamp (In seconds)
description[RW]
The description of the Flavor Params
id[RW]
The id of the Flavor Params
is_system_default[RW]
True if those Flavor Params are part of system defaults
media_parser_type[RW]
Media parser type to be used for post-conversion validation
name[RW]
The name of the Flavor Params
partner_id[RW]
remote_storage_profile_ids[RW]
Comma seperated ids of remote storage profiles that the flavor distributed to, the distribution done by the conversion engine
required_permissions[RW]
Array of partner permisison names that required for using this asset params
source_asset_params_ids[RW]
Comma seperated ids of source flavor params this flavor is created from
source_remote_storage_profile_id[RW]
Id of remote storage profile that used to get the source, zero indicates Kaltura
data center
system_name[RW]
System name of the Flavor Params
Public Instance Methods
created_at=(val)
click to toggle source
# File lib/kaltura_types.rb, line 720 def created_at=(val) @created_at = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 733 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end if xml_element.elements['partnerId'] != nil self.partner_id = xml_element.elements['partnerId'].text end if xml_element.elements['name'] != nil self.name = xml_element.elements['name'].text end if xml_element.elements['systemName'] != nil self.system_name = xml_element.elements['systemName'].text end if xml_element.elements['description'] != nil self.description = xml_element.elements['description'].text end if xml_element.elements['createdAt'] != nil self.created_at = xml_element.elements['createdAt'].text end if xml_element.elements['isSystemDefault'] != nil self.is_system_default = xml_element.elements['isSystemDefault'].text end if xml_element.elements['tags'] != nil self.tags = xml_element.elements['tags'].text end if xml_element.elements['requiredPermissions'] != nil self.required_permissions = KalturaClientBase.object_from_xml(xml_element.elements['requiredPermissions'], 'KalturaString') end if xml_element.elements['sourceRemoteStorageProfileId'] != nil self.source_remote_storage_profile_id = xml_element.elements['sourceRemoteStorageProfileId'].text end if xml_element.elements['remoteStorageProfileIds'] != nil self.remote_storage_profile_ids = xml_element.elements['remoteStorageProfileIds'].text end if xml_element.elements['mediaParserType'] != nil self.media_parser_type = xml_element.elements['mediaParserType'].text end if xml_element.elements['sourceAssetParamsIds'] != nil self.source_asset_params_ids = xml_element.elements['sourceAssetParamsIds'].text end end
id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 714 def id=(val) @id = val.to_i end
is_system_default=(val)
click to toggle source
# File lib/kaltura_types.rb, line 723 def is_system_default=(val) @is_system_default = val.to_i end
partner_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 717 def partner_id=(val) @partner_id = val.to_i end
remote_storage_profile_ids=(val)
click to toggle source
# File lib/kaltura_types.rb, line 729 def remote_storage_profile_ids=(val) @remote_storage_profile_ids = val.to_i end
source_remote_storage_profile_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 726 def source_remote_storage_profile_id=(val) @source_remote_storage_profile_id = val.to_i end