Hi,
Event status can only be of value: CONFIRMED, TENATIVE or CANCELED (
http://code.google.com/apis/gdata/javadoc/com/google/gdata/data/extensions/BaseEventEntry.EventStatus.html
)
example -
event_status = gdata.calendar.EventStatus()
event_status.value = 'TENTATIVE'
event.event_status = event_status
Hope that helps,
Austin
On Thu, Jun 19, 2008 at 12:12 AM, Gbenga <dalz...@gmail.com> wrote:
Hello,
I am trying to update/insert a Google Calendar Event using the GCal
Python library. However, whenever I try to do so with any enum field
filled (like attendee_status, transparency, and event_status). I get
an error like
{'status': 400, 'body': '[Line 2, Column 465, element ns1:eventStatus]
Missing attribute: 'value'', 'reason': 'Bad Request'}
Snippets of the code is below:
event = gdata.calendar.CalendarEventEntry()
pre_gdata = 'http://schemas.google.com/g/2005#event.'
tra = gdata.calendar.EventStatus()
tra.value = pre_gdata +'opaque'
event.transparency = tra
Any help is surely appreciated.
Thanks.