Class: Kaltura::KalturaUrlTokenizerVnpt
- Inherits:
-
KalturaUrlTokenizer
- Object
- KalturaObjectBase
- KalturaUrlTokenizer
- Kaltura::KalturaUrlTokenizerVnpt
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#should_include_client_ip ⇒ Object
Returns the value of attribute should_include_client_ip.
-
#tokenization_format ⇒ Object
Returns the value of attribute tokenization_format.
Attributes inherited from KalturaUrlTokenizer
#key, #limit_ip_address, #window
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#should_include_client_ip ⇒ Object
Returns the value of attribute should_include_client_ip.
16189 16190 16191 |
# File 'lib/kaltura_types.rb', line 16189 def should_include_client_ip @should_include_client_ip end |
#tokenization_format ⇒ Object
Returns the value of attribute tokenization_format.
16188 16189 16190 |
# File 'lib/kaltura_types.rb', line 16188 def tokenization_format @tokenization_format end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
16198 16199 16200 16201 16202 16203 16204 16205 16206 |
# File 'lib/kaltura_types.rb', line 16198 def from_xml(xml_element) super if xml_element.elements['tokenizationFormat'] != nil self.tokenization_format = xml_element.elements['tokenizationFormat'].text end if xml_element.elements['shouldIncludeClientIp'] != nil self.should_include_client_ip = xml_element.elements['shouldIncludeClientIp'].text end end |