Inheritance diagram for GoogleCalendar.gEvent:

Class representing a Google Event.
Public Member Functions | |
| def | __init__ |
| def | addComment |
| To add a comment. | |
| def | getAuthorEmail |
| To get the email of the author. | |
| def | getAuthorName |
| To get the name of the author. | |
| def | getComments |
| To get a list of the gComment items found in the event. | |
| def | getCommentURL |
| To get the Feed URL for manage the comments. | |
| def | getContent |
| To get the description of the event. | |
| def | getEndTime |
| To get the date time of the end of event. | |
| def | getID |
| To get Google Event ID. | |
| def | getLocation |
| To get the location related with event. | |
| def | getStartTime |
| To get the date time of the start of event. | |
| def | getTitle |
| To get the subject of the event. | |
| def | getXMLForSend |
| To get the basic event information. | |
| def | newComment |
| To create a comment directly into event. | |
| def | setAuthorEmail |
| To set the email of the author. | |
| def | setAuthorName |
| To get the name of the author. | |
| def | setContent |
| To set the description of the event. | |
| def | setEndTime |
| To set the date time to finalize the event. | |
| def | setLocation |
| To set the location related with event. | |
| def | setStartTime |
| To set the date time to start the event. | |
| def | setTitle |
| To set the subject of the event. | |
| def GoogleCalendar.gEvent.addComment | ( | self, | ||
| comment | ||||
| ) |
To add a comment.
| def GoogleCalendar.gEvent.getAuthorEmail | ( | self | ) |
To get the email of the author.
| def GoogleCalendar.gEvent.getAuthorName | ( | self | ) |
To get the name of the author.
| def GoogleCalendar.gEvent.getComments | ( | self | ) |
| def GoogleCalendar.gEvent.getCommentURL | ( | self | ) |
To get the Feed URL for manage the comments.
Only usable with a event retrieved from a Google Account.
| def GoogleCalendar.gEvent.getContent | ( | self | ) |
To get the description of the event.
| def GoogleCalendar.gEvent.getEndTime | ( | self | ) |
To get the date time of the end of event.
Value returned is a datetime object
| def GoogleCalendar.gEvent.getID | ( | self | ) |
To get Google Event ID.
Return the Google Event Identification, only accessible with events retrieved from a Google Account, new events hasn't this ID .
| def GoogleCalendar.gEvent.getLocation | ( | self | ) |
To get the location related with event.
| def GoogleCalendar.gEvent.getStartTime | ( | self | ) |
To get the date time of the start of event.
Value returned is a datetime object
| def GoogleCalendar.gEvent.getTitle | ( | self | ) |
To get the subject of the event.
| def GoogleCalendar.gEvent.getXMLForSend | ( | self | ) |
To get the basic event information.
When events are added or updated into a Google Calendar Account, some elements presents in a event previously retrieved from web isn't accepted in a HTTP Put call. Is for this reason that methods getAsXMLString or getAsTabulatedXMLString can't be used.
| def GoogleCalendar.gEvent.newComment | ( | self, | ||
| comment | ||||
| ) |
To create a comment directly into event.
| def GoogleCalendar.gEvent.setAuthorEmail | ( | self, | ||
| value | ||||
| ) |
To set the email of the author.
| def GoogleCalendar.gEvent.setAuthorName | ( | self, | ||
| value | ||||
| ) |
To get the name of the author.
| def GoogleCalendar.gEvent.setContent | ( | self, | ||
| content | ||||
| ) |
To set the description of the event.
| def GoogleCalendar.gEvent.setEndTime | ( | self, | ||
| datetime | ||||
| ) |
To set the date time to finalize the event.
Parameter must be a datetime object
| def GoogleCalendar.gEvent.setLocation | ( | self, | ||
| value | ||||
| ) |
To set the location related with event.
| def GoogleCalendar.gEvent.setStartTime | ( | self, | ||
| datetime | ||||
| ) |
To set the date time to start the event.
Parameter must be a datetime object
| def GoogleCalendar.gEvent.setTitle | ( | self, | ||
| content | ||||
| ) |
To set the subject of the event.
1.5.1