Class: Kaltura::KalturaAccessControlLimitDeliveryProfilesAction
- Inherits:
-
KalturaRuleAction
- Object
- KalturaObjectBase
- KalturaRuleAction
- Kaltura::KalturaAccessControlLimitDeliveryProfilesAction
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#delivery_profile_ids ⇒ Object
Comma separated list of delivery profile ids.
-
#is_blocked_list ⇒ Object
Returns the value of attribute is_blocked_list.
Attributes inherited from KalturaRuleAction
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#delivery_profile_ids ⇒ Object
Comma separated list of delivery profile ids
10212 10213 10214 |
# File 'lib/kaltura_types.rb', line 10212 def delivery_profile_ids @delivery_profile_ids end |
#is_blocked_list ⇒ Object
Returns the value of attribute is_blocked_list.
10213 10214 10215 |
# File 'lib/kaltura_types.rb', line 10213 def is_blocked_list @is_blocked_list end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
10219 10220 10221 10222 10223 10224 10225 10226 10227 |
# File 'lib/kaltura_types.rb', line 10219 def from_xml(xml_element) super if xml_element.elements['deliveryProfileIds'] != nil self.delivery_profile_ids = xml_element.elements['deliveryProfileIds'].text end if xml_element.elements['isBlockedList'] != nil self.is_blocked_list = xml_element.elements['isBlockedList'].text end end |