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

import Foundation

/// Response schema for listing stems
public struct StemListResponse: Codable, Equatable {
    public var currentPage: Int
    public var stems: [GeneratedClipSchema]

    public init(currentPage: Int, stems: [GeneratedClipSchema]) {
        self.currentPage = currentPage
        self.stems = stems
    }
}
