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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Generate.Clip {
    public func clipId(_ clipId: String) -> WithClipId {
        WithClipId(path: "\(path)/\(clipId)")
    }

    public struct WithClipId {
        /// Path: `/api/generate/clip/{clip_id}`
        public let path: String

        /// Get Clip
        public var get: Request<GenAPI.GeneratedClipSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_generate_api_get_clip")
        }
    }
}
