zitadel/internal/notification/messages/sms.go
Florian Forster fa9f581d56
chore(v2): move to new org (#3499)
* chore: move to new org

* logging

* fix: org rename caos -> zitadel

Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
2022-04-26 23:01:45 +00:00

16 lines
292 B
Go

package messages
import "github.com/zitadel/zitadel/internal/notification/channels"
var _ channels.Message = (*SMS)(nil)
type SMS struct {
SenderPhoneNumber string
RecipientPhoneNumber string
Content string
}
func (msg *SMS) GetContent() string {
return msg.Content
}