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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Clip.WithClipId {
    public var activeListeners: ActiveListeners {
        ActiveListeners(path: path + "/active-listeners")
    }

    public struct ActiveListeners {
        /// Path: `/api/clip/{clip_id}/active-listeners`
        public let path: String

        /// Get Clip Active Listeners
        public var get: Request<Void> {
            Request(path: path, method: "GET", id: "studio_api_bots_api_get_clip_active_listeners")
        }
    }
}
