(messageID)
| 1241 | main() |
| 1242 | |
| 1243 | def markMessageUnread(messageID): |
| 1244 | try: |
| 1245 | response = api.getInboxMessageByID(messageID, False) |
| 1246 | if "API Error" in response: |
| 1247 | return getAPIErrorCode(response) |
| 1248 | except: |
| 1249 | print '\n Connection Error\n' |
| 1250 | usrPrompt = 0 |
| 1251 | main() |
| 1252 | |
| 1253 | def markAllMessagesRead(): |
| 1254 | try: |
no test coverage detected