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

import Foundation

public struct UserJourneyLevel: Codable, Equatable {
    public var description: String
    public var level: Int
    public var name: String

    public init(description: String, level: Int, name: String) {
        self.description = description
        self.level = level
        self.name = name
    }
}
