D4Science D4Science Don't have a D4Science account? Create one Could not find what you are looking for? Contact us.

Message Data Type

Used for serialization

Properties
name data type constraints description
id string  
subject string required, max size: 2147483647, min size: 1
body string required, max size: 2147483647, min size: 1
sender string  
send_time number  
read boolean required boolean
attachment_ids array of string  
recipients array of Recipient required, max size: 2147483647, min size: 1

Example

{
  "id" : "...",
  "subject" : "...",
  "body" : "...",
  "sender" : "...",
  "send_time" : 12345,
  "read" : true,
  "attachment_ids" : [ "...", "..." ],
  "recipients" : [ {
    "id" : "..."
  }, {
    "id" : "..."
  } ]
}