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

import Foundation

/// Plan badge for API response (no key field)
public struct PlanBadgeResponse: Codable, Equatable {
    public var backgroundColor: String
    public var text: String
    public var textColor: String

    public init(backgroundColor: String, text: String, textColor: String) {
        self.backgroundColor = backgroundColor
        self.text = text
        self.textColor = textColor
    }
}
