// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct GenericFeedSchema: Codable, Equatable {
    public var feedId: String
    public var items: [GenericFeedItemSchema]
    /// GenericFeedLoggingContext
    public var loggingContext: GenericFeedLoggingContext

    public init(feedId: String, items: [GenericFeedItemSchema], loggingContext: GenericFeedLoggingContext) {
        self.feedId = feedId
        self.items = items
        self.loggingContext = loggingContext
    }
}
