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
Instance Attribute Summary collapse
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#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.
-
#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
#created_at ⇒ Object
Returns the value of attribute created_at.
634 635 636 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 634 def created_at @created_at end |
#id ⇒ Object
Returns the value of attribute id.
630 631 632 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 630 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
632 633 634 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 632 def name @name end |
#pricing ⇒ Object
Returns the value of attribute pricing.
640 641 642 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 640 def pricing @pricing end |
#service_feature ⇒ Object
Returns the value of attribute service_feature.
638 639 640 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 638 def service_feature @service_feature end |
#service_type ⇒ Object
Returns the value of attribute service_type.
637 638 639 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 637 def service_type @service_type end |
#status ⇒ Object
Returns the value of attribute status.
636 637 638 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 636 def status @status end |
#system_name ⇒ Object
Returns the value of attribute system_name.
633 634 635 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 633 def system_name @system_name end |
#turn_around_time ⇒ Object
Returns the value of attribute turn_around_time.
639 640 641 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 639 def turn_around_time @turn_around_time end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
635 636 637 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 635 def updated_at @updated_at end |
#vendor_partner_id ⇒ Object
Returns the value of attribute vendor_partner_id.
631 632 633 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 631 def vendor_partner_id @vendor_partner_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 667 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 end |