Class: Kaltura::KalturaVendorCatalogItem
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaVendorCatalogItem
- Defined in:
- lib/kaltura_plugins/kaltura_reach_client_plugin.rb
Direct Known Subclasses
KalturaVendorAlignmentCatalogItem, KalturaVendorAudioDescriptionCatalogItem, KalturaVendorCaptionsCatalogItem, KalturaVendorChapteringCatalogItem, KalturaVendorDubbingCatalogItem, KalturaVendorIntelligentTaggingCatalogItem
Instance Attribute Summary collapse
-
#allow_resubmission ⇒ Object
Returns the value of attribute allow_resubmission.
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#engine_type ⇒ Object
Property showing the catalog item’s engine type, in case a vendor can offer the same service via different engines.
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
-
#pricing ⇒ Object
Returns the value of attribute pricing.
-
#service_feature ⇒ Object
Returns the value of attribute service_feature.
-
#service_type ⇒ Object
Returns the value of attribute service_type.
-
#source_language ⇒ Object
Returns the value of attribute source_language.
-
#status ⇒ Object
Returns the value of attribute status.
-
#system_name ⇒ Object
Returns the value of attribute system_name.
-
#turn_around_time ⇒ Object
Returns the value of attribute turn_around_time.
-
#updated_at ⇒ Object
Returns the value of attribute updated_at.
-
#vendor_partner_id ⇒ Object
Returns the value of attribute vendor_partner_id.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#allow_resubmission ⇒ Object
Returns the value of attribute allow_resubmission.
687 688 689 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 687 def allow_resubmission @allow_resubmission end |
#created_at ⇒ Object
Returns the value of attribute created_at.
677 678 679 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 677 def created_at @created_at end |
#engine_type ⇒ Object
Property showing the catalog item’s engine type, in case a vendor can offer the same service via different engines.
685 686 687 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 685 def engine_type @engine_type end |
#id ⇒ Object
Returns the value of attribute id.
673 674 675 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 673 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
675 676 677 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 675 def name @name end |
#pricing ⇒ Object
Returns the value of attribute pricing.
683 684 685 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 683 def pricing @pricing end |
#service_feature ⇒ Object
Returns the value of attribute service_feature.
681 682 683 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 681 def service_feature @service_feature end |
#service_type ⇒ Object
Returns the value of attribute service_type.
680 681 682 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 680 def service_type @service_type end |
#source_language ⇒ Object
Returns the value of attribute source_language.
686 687 688 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 686 def source_language @source_language end |
#status ⇒ Object
Returns the value of attribute status.
679 680 681 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 679 def status @status end |
#system_name ⇒ Object
Returns the value of attribute system_name.
676 677 678 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 676 def system_name @system_name end |
#turn_around_time ⇒ Object
Returns the value of attribute turn_around_time.
682 683 684 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 682 def turn_around_time @turn_around_time end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
678 679 680 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 678 def updated_at @updated_at end |
#vendor_partner_id ⇒ Object
Returns the value of attribute vendor_partner_id.
674 675 676 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 674 def vendor_partner_id @vendor_partner_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 717 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 |