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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Unified {
    public var feed: Feed {
        Feed(path: path + "/feed")
    }

    public struct Feed {
        /// Path: `/api/unified/feed`
        public let path: String

        /// Fetch Unified Feed
        ///
        /// Fetch unified feed items (hooks, clips, and other content types).
        public func post(_ body: GenAPI.UnifiedFeedRequest) -> Request<GenAPI.UnifiedFeedResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_unified_feed_feed_api_fetch_unified_feed")
        }
    }
}
