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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Social {
    public var followingFeed: FollowingFeed {
        FollowingFeed(path: path + "/following-feed")
    }

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

        /// Get Following Feed Items
        public func post(_ body: GenAPI.FollowingFeedRequestSchema) -> Request<GenAPI.FollowingFeedResponseSchema> {
            Request(path: path, method: "POST", body: body, id: "studio_api_social_api_get_following_feed_items")
        }
    }
}
