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



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

def format
  @format
end

#is_defaultObject

Is default caption asset of the entry



140
141
142
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 140

def is_default
  @is_default
end

#labelObject

Friendly label



142
143
144
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 142

def label
  @label
end

#languageObject

The language of the caption content



138
139
140
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 138

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



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

def source_params_id
  @source_params_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 155

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