You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
475 B
12 lines
475 B
from ITOA.itoa_object import ItoaObject
|
|
|
|
|
|
class ItsiDataIntegrationTemplate(ItoaObject):
|
|
|
|
collection_name = 'itsi_data_integration_template'
|
|
|
|
def __init__(self, session_key, current_user_name):
|
|
super(ItsiDataIntegrationTemplate, self).__init__(session_key,
|
|
current_user_name, 'data_integration_template',
|
|
collection_name=self.collection_name)
|