mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
16 lines
292 B
Go
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
|
|
}
|