diff options
Diffstat (limited to 'python/qpid/messaging/message.py')
-rw-r--r-- | python/qpid/messaging/message.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/python/qpid/messaging/message.py b/python/qpid/messaging/message.py index a96a6da0ac..e2406f16e7 100644 --- a/python/qpid/messaging/message.py +++ b/python/qpid/messaging/message.py @@ -74,12 +74,20 @@ class Message: @type id: str @ivar id: the message id + @type subject: str + @ivar subject: message subject @type user_id: str @ivar user_id: the user-id of the message producer @type reply_to: str @ivar reply_to: the address to send replies @type correlation_id: str @ivar correlation_id: a correlation-id for the message + @type durable: bool + @ivar durable: message durability + @type priority: int + @ivar priority: message priority + @type ttl: float + @ivar ttl: time-to-live measured in seconds @type properties: dict @ivar properties: application specific message properties @type content_type: str |