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

import Foundation

public struct StatsigCustomProperties: Codable, Equatable {
    public var custom: [String: String]?
    public var customIds: [String: String]?

    public init(custom: [String: String]? = nil, customIds: [String: String]? = nil) {
        self.custom = custom
        self.customIds = customIds
    }
}
