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

import Foundation

public struct CreateVisitorAlreadyLoggedInResponse: Codable, Equatable {
    public var type: `Type`?

    /// Type
    public struct `Type`: RawRepresentable, Codable, Equatable {
        public let rawValue: String

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

        public static let alreadyLoggedIn = Self(rawValue: "already_logged_in")
    }

    public init(type: `Type`? = nil) {
        self.type = type
    }
}
