Source code for platypush.message.event.nextcloud

from platypush.message.event import Event


[docs]class NextCloudActivityEvent(Event):
[docs] def __init__(self, activity_id: int, activity_type: str, *args, **kwargs): super().__init__(*args, activity_id=activity_id, activity_type=activity_type, **kwargs)
# vim:sw=4:ts=4:et: