Class: Kaltura::KalturaCaptionParams

Inherits:
KalturaAssetParams show all
Defined in:
lib/kaltura_plugins/kaltura_caption_client_plugin.rb

Instance Attribute Summary collapse

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

#formatObject

The caption format



150
151
152
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 150

def format
  @format
end

#is_defaultObject

Is default caption asset of the entry



146
147
148
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 146

def is_default
  @is_default
end

#labelObject

Friendly label



148
149
150
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 148

def label
  @label
end

#languageObject

The language of the caption content



144
145
146
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 144

def language
  @language
end

#source_params_idObject

Id of the caption params or the flavor params to be used as source for the caption creation



152
153
154
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 152

def source_params_id
  @source_params_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 161

def from_xml(xml_element)
	super
	if xml_element.elements['language'] != nil
		self.language = xml_element.elements['language'].text
	end
	if xml_element.elements['isDefault'] != nil
		self.is_default = xml_element.elements['isDefault'].text
	end
	if xml_element.elements['label'] != nil
		self.label = xml_element.elements['label'].text
	end
	if xml_element.elements['format'] != nil
		self.format = xml_element.elements['format'].text
	end
	if xml_element.elements['sourceParamsId'] != nil
		self.source_params_id = xml_element.elements['sourceParamsId'].text
	end
end