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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Gen.WithClipId {
    public var opusFile: OpusFile {
        OpusFile(path: path + "/opus_file")
    }

    public struct OpusFile {
        /// Path: `/api/gen/{clip_id}/opus_file`
        public let path: String

        /// Get Clip Opus File
        public var get: Request<GenAPI.OpusFileSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_gen_api_get_clip_opus_file")
        }
    }
}
