Class: Kaltura::KalturaCountryRestriction

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#country_listObject

Comma separated list of country codes to allow to deny



11925
11926
11927
# File 'lib/kaltura_types.rb', line 11925

def country_list
  @country_list
end

#country_restriction_typeObject

Country restriction type (Allow or deny)



11923
11924
11925
# File 'lib/kaltura_types.rb', line 11923

def country_restriction_type
  @country_restriction_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11931
11932
11933
11934
11935
11936
11937
11938
11939
# File 'lib/kaltura_types.rb', line 11931

def from_xml(xml_element)
	super
	if xml_element.elements['countryRestrictionType'] != nil
		self.country_restriction_type = xml_element.elements['countryRestrictionType'].text
	end
	if xml_element.elements['countryList'] != nil
		self.country_list = xml_element.elements['countryList'].text
	end
end