// Generated code. Do not modify. import CommonCore import Foundation import Serialization public final class EntityWithArray: Sendable { public static let type: String = "entity_with_array" public let array: [Entity] // at least 1 elements static let arrayValidator: AnyArrayValueValidator = makeArrayValidator(minItems: 1) init( array: [Entity] ) { self.array = array } } #if DEBUG extension EntityWithArray: Equatable { public static func ==(lhs: EntityWithArray, rhs: EntityWithArray) -> Bool { guard lhs.array == rhs.array else { return false } return true } } #endif