/*
 * AccountTypeEnum Enum
 * Copyright (c) TIKI Inc.
 * MIT license. See LICENSE file in the root directory.
 */
import Foundation

/// An enumeration representing different types of user accounts.
public enum AccountTypeEnum {
    /// Indicates an email account type.
    case email
    /// Indicates a retailer account type.
    case retailer
}
