lib/app/outgoingemailreceipt.go

21 lines
611 B
Go
Raw Permalink Normal View History

2021-01-10 23:44:39 +00:00
package app
2021-01-10 18:40:46 +00:00
2021-01-12 05:46:24 +00:00
// OutgoingEmailMessageReceiptChannelWrapper wraps the object with the security principal
type OutgoingEmailMessageReceiptChannelWrapper struct {
// Obj workflow_models.OutgoingEmailMessageReceipt
Principal User
}
2021-01-10 18:40:46 +00:00
// OutgoingEmailMessageReceipt is a first class object type
type OutgoingEmailMessageReceipt struct {
ID string
Body string
EmailMessageID string
Headers map[string]string
Status string
StatusCode int64
Subject string
ToAddress string
ValidatedFromAddress string
}