Files
divkit/api_generator/tests/references/shared_data_swift/EntityWithRawArray.swift
T

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