package QuectelAT const ( Text = "Text" ) type SentenceText struct { Message string } func (s SentenceText) DataType() string { return Text } func NewText(raw string) Sentence { return SentenceText{} }