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

import Foundation

public struct StatsigAutocompleteRequest: Codable, Equatable {
    public var name: String
    public var unitType: String

    public init(name: String, unitType: String) {
        self.name = name
        self.unitType = unitType
    }
}
