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.



1601
1602
1603
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1601

def duration_limit
  @duration_limit
end

#minimal_order_timeObject

Returns the value of attribute minimal_order_time.



1600
1601
1602
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1600

def minimal_order_time
  @minimal_order_time
end

#minimal_refund_timeObject

Returns the value of attribute minimal_refund_time.



1599
1600
1601
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1599

def minimal_refund_time
  @minimal_refund_time
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1613

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