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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Gen.WithClipId {
    public var waveformAggregates: WaveformAggregates {
        WaveformAggregates(path: path + "/waveform-aggregates")
    }

    public struct WaveformAggregates {
        /// Path: `/api/gen/{clip_id}/waveform-aggregates`
        public let path: String

        /// Get Waveform Aggregates
        ///
        /// Get the waveform aggregates for a clip.
        public var get: Request<GenAPI.WaveformAggregateResponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_gen_api_get_waveform_aggregates")
        }
    }
}
