// swiftlint:disable all import Amplify import Foundation public struct Post7: Model { public let postId: String public let title: String public var comments: List? public var createdAt: Temporal.DateTime? public var updatedAt: Temporal.DateTime? public init(postId: String, title: String, comments: List? = []) { self.init(postId: postId, title: title, comments: comments, createdAt: nil, updatedAt: nil) } internal init(postId: String, title: String, comments: List? = [], createdAt: Temporal.DateTime? = nil, updatedAt: Temporal.DateTime? = nil) { self.postId = postId self.title = title self.comments = comments self.createdAt = createdAt self.updatedAt = updatedAt } }