14 lines
435 B
Python
14 lines
435 B
Python
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
|
|
|
|
|
class BuildMeetingPresident(AddEventFunctionality):
|
|
service_code = "SRO-MT-PRS"
|
|
related_code = "MT-PRS"
|
|
events = [
|
|
{"function_code": "eb36de59-8268-4d96-80b6-5d01c12bf0b1"},
|
|
{"function_code": "5c10d6ae-2aee-4243-a7c3-94826d028d13"},
|
|
]
|
|
|
|
def __new__(cls, *args, **kwargs):
|
|
return super().retrieve_events(cls.events)
|