File size: 372 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
package nfymsg
import "github.com/target/goalert/gadb"
// SendResult represents the result of a sent message.
type SendResult struct {
// ID is the GoAlert message ID.
ID string
// ProviderMessageID is an identifier that represents the provider-specific ID
// of the message (e.g. Twilio SID).
ProviderMessageID gadb.ProviderMessageID
Status
DestType string
}
|