github.com/cozy/cozy-stack@v0.0.0-20240327093429-939e4a21320e/model/notification/center/sms.go (about)

     1  package center
     2  
     3  import "github.com/cozy/cozy-stack/pkg/mail"
     4  
     5  // SMS contains a notification request for sending a SMS.
     6  type SMS struct {
     7  	NotificationID string        `json:"notification_id"`
     8  	Message        string        `json:"message,omitempty"`
     9  	MailFallback   *mail.Options `json:"mail_fallback,omitempty"`
    10  }