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

import Foundation

public struct WaveformAggregateSchema: Codable, Equatable {
    public var data: [[Int]]
    public var mipMapLevel: Int

    public init(data: [[Int]], mipMapLevel: Int) {
        self.data = data
        self.mipMapLevel = mipMapLevel
    }
}
