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

import Foundation

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

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

    public static let free = Self(rawValue: "free")
    public static let student = Self(rawValue: "student")
    public static let pro = Self(rawValue: "pro")
    public static let premier = Self(rawValue: "premier")
    public static let basic = Self(rawValue: "basic")
    public static let pro20250501 = Self(rawValue: "pro_20250501")
}
