class Kaltura::KalturaPushNotificationTemplate

Attributes

api_object_type[RW]

Kaltura API object type

object_format[RW]

Kaltura Object format

queue_key_parameters[RW]

Define the content dynamic parameters

queue_name_parameters[RW]

Define the content dynamic parameters

response_profile_id[RW]

Kaltura response-profile id

Public Instance Methods

from_xml(xml_element) click to toggle source
# File lib/kaltura_plugins/kaltura_push_notification_client_plugin.rb, line 114
def from_xml(xml_element)
        super
        if xml_element.elements['queueNameParameters'] != nil
                self.queue_name_parameters = KalturaClientBase.object_from_xml(xml_element.elements['queueNameParameters'], 'KalturaPushEventNotificationParameter')
        end
        if xml_element.elements['queueKeyParameters'] != nil
                self.queue_key_parameters = KalturaClientBase.object_from_xml(xml_element.elements['queueKeyParameters'], 'KalturaPushEventNotificationParameter')
        end
        if xml_element.elements['apiObjectType'] != nil
                self.api_object_type = xml_element.elements['apiObjectType'].text
        end
        if xml_element.elements['objectFormat'] != nil
                self.object_format = xml_element.elements['objectFormat'].text
        end
        if xml_element.elements['responseProfileId'] != nil
                self.response_profile_id = xml_element.elements['responseProfileId'].text
        end
end
object_format=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_push_notification_client_plugin.rb, line 107
def object_format=(val)
        @object_format = val.to_i
end
response_profile_id=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_push_notification_client_plugin.rb, line 110
def response_profile_id=(val)
        @response_profile_id = val.to_i
end