import { _Content, _UnmarshalledContent } from "./_Content"; import { _Body, _UnmarshalledBody } from "./_Body"; /** *

Represents the message to be sent, composed of a subject and a body.

*/ export interface _Message { /** *

The subject of the message: A short summary of the content, which will appear in the recipient's inbox.

*/ Subject: _Content; /** *

The message body.

*/ Body: _Body; } export interface _UnmarshalledMessage extends _Message { /** *

The subject of the message: A short summary of the content, which will appear in the recipient's inbox.

*/ Subject: _UnmarshalledContent; /** *

The message body.

*/ Body: _UnmarshalledBody; }