Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion timetree_sdk/models/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, attributes=None, relationships=None):


class EventAttributes(Base):
def __init__(self, title=None, category=None, all_day=None, start_at=None, start_timezone=None, end_at=None, end_timezone=None, description=None, location=None, url=None, relationships=None):
def __init__(self, title=None, category=None, all_day=None, start_at=None, start_timezone=None, end_at=None, end_timezone=None, description=None, location=None, location_lat=None, location_lon=None, url=None, relationships=None):

super(EventAttributes, self).__init__()

Expand All @@ -33,6 +33,8 @@ def __init__(self, title=None, category=None, all_day=None, start_at=None, start
self.end_timezone = end_timezone
self.description = description
self.location = location
self.location_lat = location_lat
self.location_lon = location_lon
self.url = url
self.label = self.get_or_new_from_json_dict(relationships, EventRelationships)

Expand Down