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

import Foundation

public struct PromoHeadlineSchema: Codable, Equatable {
    public var color: String?
    public var text: String?

    public init(color: String? = nil, text: String? = nil) {
        self.color = color
        self.text = text
    }
}
