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

import Foundation

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

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

    public static let input = Self(rawValue: "input")
    public static let textarea = Self(rawValue: "textarea")
    public static let radio = Self(rawValue: "radio")
    public static let multi = Self(rawValue: "multi")
}
