mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
26 lines
512 B
Swift
26 lines
512 B
Swift
// Generated code. Do not modify.
|
|
|
|
import CommonCore
|
|
import Foundation
|
|
import Serialization
|
|
|
|
public final class EntityWithRawArray {
|
|
public static let type: String = "entity_with_raw_array"
|
|
public let array: [Any]
|
|
|
|
init(
|
|
array: [Any]
|
|
) {
|
|
self.array = array
|
|
}
|
|
}
|
|
|
|
#if DEBUG
|
|
// WARNING: this == is incomplete because of [Any] in class fields
|
|
extension EntityWithRawArray: Equatable {
|
|
public static func ==(lhs: EntityWithRawArray, rhs: EntityWithRawArray) -> Bool {
|
|
return true
|
|
}
|
|
}
|
|
#endif
|