Class: Kaltura::KalturaDeliveryProfileHttp

Inherits:
KalturaDeliveryProfile show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaDeliveryProfile

#created_at, #description, #extra_params, #host_name, #id, #is_default, #media_protocols, #name, #parent_id, #partner_id, #priority, #recognizer, #status, #streamer_type, #supplementary_assets_filter, #system_name, #tokenizer, #type, #updated_at, #url

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#max_sizeObject

Returns the value of attribute max_size.



12840
12841
12842
# File 'lib/kaltura_types.rb', line 12840

def max_size
  @max_size
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



12846
12847
12848
12849
12850
12851
# File 'lib/kaltura_types.rb', line 12846

def from_xml(xml_element)
	super
	if xml_element.elements['maxSize'] != nil
		self.max_size = xml_element.elements['maxSize'].text
	end
end