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

import Foundation

public struct ModelTypeMaxLengths: Codable, Equatable {
    public var gptDescriptionPrompt: Int
    public var negativeTags: Int
    public var prompt: Int
    public var tags: Int
    public var title: Int

    public init(gptDescriptionPrompt: Int, negativeTags: Int, prompt: Int, tags: Int, title: Int) {
        self.gptDescriptionPrompt = gptDescriptionPrompt
        self.negativeTags = negativeTags
        self.prompt = prompt
        self.tags = tags
        self.title = title
    }
}
