api: Implement POST /messages/flags.

This commit is contained in:
Yago González 2018-07-03 17:41:52 +02:00 committed by Tim Abbott
parent c2fdd547f7
commit a96c3f0db0
2 changed files with 37 additions and 0 deletions

View file

@ -748,6 +748,17 @@ class Client(object):
method='DELETE'
)
def update_message_flags(self, update_data):
# type: (Dict[str, Any]) -> Dict[str, Any]
'''
See examples/update-flags for example usage.
'''
return self.call_endpoint(
url='messages/flags',
method='POST',
request=update_data
)
def get_message_history(self, message_id):
# type: (int) -> Dict[str, Any]
'''