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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Social {
    public var followingClipFeed: FollowingClipFeed {
        FollowingClipFeed(path: path + "/following-clip-feed")
    }

    public struct FollowingClipFeed {
        /// Path: `/api/social/following-clip-feed`
        public let path: String

        /// Folllowing Feed
        public func post(_ body: GenAPI.FollowingFeedRequest) -> Request<GenAPI.FollowingFeedResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_social_api_folllowing_feed")
        }
    }
}
