Class: Kaltura::KalturaVendorLiveCaptionCatalogItem

Inherits:
KalturaVendorCaptionsCatalogItem show all
Defined in:
lib/kaltura_plugins/kaltura_reach_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaVendorCaptionsCatalogItem

#enable_speaker_id, #fixed_price_addons, #output_format

Attributes inherited from KalturaVendorCatalogItem

#allow_resubmission, #created_at, #engine_type, #id, #name, #pricing, #service_feature, #service_type, #source_language, #status, #system_name, #turn_around_time, #updated_at, #vendor_partner_id

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#duration_limitObject

Returns the value of attribute duration_limit.



1568
1569
1570
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1568

def duration_limit
  @duration_limit
end

#minimal_order_timeObject

Returns the value of attribute minimal_order_time.



1567
1568
1569
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1567

def minimal_order_time
  @minimal_order_time
end

#minimal_refund_timeObject

Returns the value of attribute minimal_refund_time.



1566
1567
1568
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1566

def minimal_refund_time
  @minimal_refund_time
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1580

def from_xml(xml_element)
  super
  if xml_element.elements['minimalRefundTime'] != nil
    self.minimal_refund_time = xml_element.elements['minimalRefundTime'].text
  end
  if xml_element.elements['minimalOrderTime'] != nil
    self.minimal_order_time = xml_element.elements['minimalOrderTime'].text
  end
  if xml_element.elements['durationLimit'] != nil
    self.duration_limit = xml_element.elements['durationLimit'].text
  end
end