class Kaltura::KalturaUrlTokenizerVnpt

Attributes

should_include_client_ip[RW]
tokenization_format[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaUrlTokenizer#from_xml
# File lib/kaltura_types.rb, line 15915
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
should_include_client_ip=(val) click to toggle source
# File lib/kaltura_types.rb, line 15911
def should_include_client_ip=(val)
        @should_include_client_ip = to_b(val)
end
tokenization_format=(val) click to toggle source
# File lib/kaltura_types.rb, line 15908
def tokenization_format=(val)
        @tokenization_format = val.to_i
end