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

import Foundation

public struct PromoBadgeSchema: Codable, Equatable {
    public var backgroundColor: String?
    public var label: String?
    public var textColor: String?

    public init(backgroundColor: String? = nil, label: String? = nil, textColor: String? = nil) {
        self.backgroundColor = backgroundColor
        self.label = label
        self.textColor = textColor
    }
}
