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

import Foundation

public struct SimilarCreatorsResponse: Codable, Equatable {
    public var creators: [SimpleProfileInfoSchema]
    public var fallbackToPopular: Bool

    public init(creators: [SimpleProfileInfoSchema], fallbackToPopular: Bool? = nil) {
        self.creators = creators
        self.fallbackToPopular = fallbackToPopular ?? false
    }
}
