class Kaltura::KalturaVendorCatalogItem

Attributes

allow_resubmission[RW]
created_at[RW]
engine_type[RW]

Property showing the catalog item's engine type, in case a vendor can offer the same service via different engines.

id[RW]
name[RW]
pricing[RW]
service_feature[RW]
service_type[RW]
source_language[RW]
status[RW]
system_name[RW]
turn_around_time[RW]
updated_at[RW]
vendor_partner_id[RW]

Public Instance Methods

allow_resubmission=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 706
def allow_resubmission=(val)
        @allow_resubmission = to_b(val)
end
created_at=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 688
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_plugins/kaltura_reach_client_plugin.rb, line 710
def from_xml(xml_element)
        super
        if xml_element.elements['id'] != nil
                self.id = xml_element.elements['id'].text
        end
        if xml_element.elements['vendorPartnerId'] != nil
                self.vendor_partner_id = xml_element.elements['vendorPartnerId'].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['createdAt'] != nil
                self.created_at = xml_element.elements['createdAt'].text
        end
        if xml_element.elements['updatedAt'] != nil
                self.updated_at = xml_element.elements['updatedAt'].text
        end
        if xml_element.elements['status'] != nil
                self.status = xml_element.elements['status'].text
        end
        if xml_element.elements['serviceType'] != nil
                self.service_type = xml_element.elements['serviceType'].text
        end
        if xml_element.elements['serviceFeature'] != nil
                self.service_feature = xml_element.elements['serviceFeature'].text
        end
        if xml_element.elements['turnAroundTime'] != nil
                self.turn_around_time = xml_element.elements['turnAroundTime'].text
        end
        if xml_element.elements['pricing'] != nil
                self.pricing = KalturaClientBase.object_from_xml(xml_element.elements['pricing'], 'KalturaVendorCatalogItemPricing')
        end
        if xml_element.elements['engineType'] != nil
                self.engine_type = xml_element.elements['engineType'].text
        end
        if xml_element.elements['sourceLanguage'] != nil
                self.source_language = xml_element.elements['sourceLanguage'].text
        end
        if xml_element.elements['allowResubmission'] != nil
                self.allow_resubmission = xml_element.elements['allowResubmission'].text
        end
end
id=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 682
def id=(val)
        @id = val.to_i
end
service_feature=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 700
def service_feature=(val)
        @service_feature = val.to_i
end
service_type=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 697
def service_type=(val)
        @service_type = val.to_i
end
status=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 694
def status=(val)
        @status = val.to_i
end
turn_around_time=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 703
def turn_around_time=(val)
        @turn_around_time = val.to_i
end
updated_at=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 691
def updated_at=(val)
        @updated_at = val.to_i
end
vendor_partner_id=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 685
def vendor_partner_id=(val)
        @vendor_partner_id = val.to_i
end