package model import ( "time" ) type Feed struct { Identifier string URL string SiteURL *string Title *string FeedType *string Visibility string EntityTag *string LastModified *string LastFetchedAt *time.Time LastFetchError *string ConsecutiveFailures int NextFetchAt time.Time FetchIntervalSeconds int CreatedAt time.Time UpdatedAt time.Time SubscriberUserIdentifier *string AuthenticationType *string AuthenticationValue *string } type FeedEntry struct { FeedIdentifier string OwnerIdentifier *string GUID string URL *string Title *string Author *string Summary *string ContentHTML *string ContentText *string ImageURL *string PublishedAt *time.Time WordCount *int EnclosureURL *string EnclosureType *string EnclosureLength *int64 }