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

import Foundation
import Get
import URLQueryEncoder

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

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

        /// Mark Feed Items Watched
        public func post(_ body: GenAPI.UnifiedFeedWatchedRequest) -> Request<GenAPI.UnifiedFeedWatchedResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_unified_feed_feed_api_mark_feed_items_watched")
        }
    }
}
