Message
class resources.message.Message
Base class: Activity
There are two uses for messages:
- A form which a user can fill out to provide data to an execution,
- A message generated by an execution to inform a user.
:py:obj:flow_api.message.Message
Property | Description | Type |
---|---|---|
id | UUID() | |
identity_id | The ID of the identity which created the message. | UUID() |
message_type | The type of the message. | Enum('SUCCESS', 'INFO', 'WARNING', 'ERROR', 'POPUP', name='messagetype') |
subject | The message subject. | String(length=128) |
body | The body of the message form. | JSONB(astext_type=Text()) |
response | The response given by a user. | JSONB(astext_type=Text()) |
size_bytes | BigInteger() |