14 lines
268 B
Python
14 lines
268 B
Python
class interface_notification_channel(object):
|
|
|
|
def parameters_schema(self):
|
|
raise NotImplementedError
|
|
|
|
|
|
def normalize_order_node(self, node):
|
|
raise NotImplementedError
|
|
|
|
|
|
def notify(self, parameters, name, data, state, info):
|
|
raise NotImplementedError
|
|
|