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

import Foundation

public struct PlanChangeSchemaResponse: Codable, Equatable, Identifiable {
    public var error: String?
    public var id: String?
    public var ok: Bool

    public init(error: String? = nil, id: String? = nil, ok: Bool) {
        self.error = error
        self.id = id
        self.ok = ok
    }
}
