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

import Foundation

/// Response schema for Sunote processing
public struct SunoteResponse: Codable, Equatable {
    public var clipId: String
    public var count: Int?
    public var cropMetadata: [String: AnyJSON]?
    public var status: String

    public init(clipId: String, count: Int? = nil, cropMetadata: [String: AnyJSON]? = nil, status: String) {
        self.clipId = clipId
        self.count = count
        self.cropMetadata = cropMetadata
        self.status = status
    }
}
