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

import Foundation
import Get
import URLQueryEncoder

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

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

        /// Get Video Feed
        public var post: Request<GenAPI.GenericFeedSchema> {
            Request(path: path, method: "POST", id: "studio_api_unified_feed_feed_api_get_video_feed")
        }
    }
}
