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

import Foundation

public struct ImageModel: RawRepresentable, Codable, Equatable {
    public let rawValue: String

    public init(rawValue: String) {
        self.rawValue = rawValue
    }

    public static let openaiImageGpt1 = Self(rawValue: "openai_image_gpt_1")
    public static let sdxlLightning = Self(rawValue: "sdxl-lightning")
    public static let falNanoBanana = Self(rawValue: "fal_nano_banana")
}
