class Kaltura::KalturaVendorCaptionsCatalogItem

Attributes

enable_speaker_id[RW]
fixed_price_addons[RW]
output_format[RW]

Public Instance Methods

enable_speaker_id=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 967
def enable_speaker_id=(val)
        @enable_speaker_id = val.to_i
end
fixed_price_addons=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 970
def fixed_price_addons=(val)
        @fixed_price_addons = val.to_i
end
from_xml(xml_element) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 974
def from_xml(xml_element)
        super
        if xml_element.elements['outputFormat'] != nil
                self.output_format = xml_element.elements['outputFormat'].text
        end
        if xml_element.elements['enableSpeakerId'] != nil
                self.enable_speaker_id = xml_element.elements['enableSpeakerId'].text
        end
        if xml_element.elements['fixedPriceAddons'] != nil
                self.fixed_price_addons = xml_element.elements['fixedPriceAddons'].text
        end
end
output_format=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 964
def output_format=(val)
        @output_format = val.to_i
end