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

import Foundation

/// Text-based feature value for API response (no key field)
public struct TextFeatureValueResponse: Codable, Equatable {
    public var text: String

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