Class: Kaltura::KalturaEventNotificationArrayParameter
- Inherits:
-
KalturaEventNotificationParameter
- Object
- KalturaObjectBase
- KalturaEventNotificationParameter
- Kaltura::KalturaEventNotificationArrayParameter
- Defined in:
- lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb
Instance Attribute Summary collapse
-
#allowed_values ⇒ Object
Used to restrict the values to close list.
-
#values ⇒ Object
Returns the value of attribute values.
Attributes inherited from KalturaEventNotificationParameter
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#allowed_values ⇒ Object
Used to restrict the values to close list
226 227 228 |
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 226 def allowed_values @allowed_values end |
#values ⇒ Object
Returns the value of attribute values.
223 224 225 |
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 223 def values @values end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
229 230 231 232 233 |
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 229 def from_xml(xml_element) super self.values = KalturaClientBase.object_from_xml(xml_element.elements['values'], 'KalturaString') self.allowed_values = KalturaClientBase.object_from_xml(xml_element.elements['allowedValues'], 'KalturaStringValue') end |