class Kaltura::KalturaBusinessProcessServer

Attributes

created_at[RW]

Server creation date as Unix timestamp (In seconds)

dc[RW]

The dc of the server

description[RW]
id[RW]

Auto generated identifier

name[RW]
partner_id[RW]
status[RW]
system_name[RW]
type[RW]

The type of the server, this is auto filled by the derived server object

updated_at[RW]

Server update date as Unix timestamp (In seconds)

Public Instance Methods

created_at=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb, line 141
def created_at=(val)
        @created_at = val.to_i
end
dc=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb, line 150
def dc=(val)
        @dc = val.to_i
end
from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb, line 154
def from_xml(xml_element)
        super
        if xml_element.elements['id'] != nil
                self.id = xml_element.elements['id'].text
        end
        if xml_element.elements['createdAt'] != nil
                self.created_at = xml_element.elements['createdAt'].text
        end
        if xml_element.elements['updatedAt'] != nil
                self.updated_at = xml_element.elements['updatedAt'].text
        end
        if xml_element.elements['partnerId'] != nil
                self.partner_id = xml_element.elements['partnerId'].text
        end
        if xml_element.elements['name'] != nil
                self.name = xml_element.elements['name'].text
        end
        if xml_element.elements['systemName'] != nil
                self.system_name = xml_element.elements['systemName'].text
        end
        if xml_element.elements['description'] != nil
                self.description = xml_element.elements['description'].text
        end
        if xml_element.elements['status'] != nil
                self.status = xml_element.elements['status'].text
        end
        if xml_element.elements['type'] != nil
                self.type = xml_element.elements['type'].text
        end
        if xml_element.elements['dc'] != nil
                self.dc = xml_element.elements['dc'].text
        end
end
id=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb, line 138
def id=(val)
        @id = val.to_i
end
partner_id=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb, line 147
def partner_id=(val)
        @partner_id = val.to_i
end
updated_at=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb, line 144
def updated_at=(val)
        @updated_at = val.to_i
end