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

import Foundation

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

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

    public static let accountPage = Self(rawValue: "accountPage")
    public static let upsellModal = Self(rawValue: "upsellModal")
    public static let pricingPage = Self(rawValue: "pricingPage")
    public static let splashPage = Self(rawValue: "splashPage")
    public static let commercialRightsModal = Self(rawValue: "commercialRightsModal")
}
