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

import Foundation

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

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

    public static let ios = Self(rawValue: "ios")
    public static let android = Self(rawValue: "android")
    public static let web = Self(rawValue: "web")
    public static let mobileWeb = Self(rawValue: "mobile_web")
}
