12 lines
232 B
Go
Raw Normal View History

2019-06-03 09:32:43 +00:00
package arn
// HasText includes a text field.
type hasText struct {
Text string `json:"text" editable:"true" type:"textarea"`
}
// GetText returns the text of the object.
func (obj *hasText) GetText() string {
return obj.Text
}