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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Unified.Items {
    public var timeSyncComments: TimeSyncComments {
        TimeSyncComments(path: path + "/time-sync-comments")
    }

    public struct TimeSyncComments {
        /// Path: `/api/unified/items/time-sync-comments`
        public let path: String

        /// Get Time Sync Comments
        ///
        /// Get time-synchronized comments for a feed item.
        public var get: Request<GenAPI.GenericTimeSyncCommentsResponse> {
            Request(path: path, method: "GET", id: "studio_api_unified_feed_actions_api_get_time_sync_comments")
        }
    }
}
