atom/inlineOtherContent.go

12 lines
295 B
Go
Raw Normal View History

2024-10-13 17:19:40 +02:00
package atomfeed
type InlineOtherContent struct {
*CommonAttributes
Type MediaType `xml:"type,attr,omitempty"`
AnyElement []*any `xml:"anyelement,omitempty"`
}
func (i *InlineOtherContent) IsContent() bool { return true }
func (i *InlineOtherContent) Check() error { return nil }