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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Social {
    public var followingFeedV2: FollowingFeedV2 {
        FollowingFeedV2(path: path + "/following-feed-v2")
    }

    public struct FollowingFeedV2 {
        /// Path: `/api/social/following-feed-v2`
        public let path: String

        /// Get Following Feed V2
        public func post(_ body: GenAPI.FollowingFeedRequestV2) -> Request<GenAPI.FollowingFeedResponseV2> {
            Request(path: path, method: "POST", body: body, id: "studio_api_social_api_get_following_feed_v2")
        }
    }
}
