// swiftlint:disable all import Amplify import Foundation public struct Post20: Model { public let postId: String public let sk: Int public var createdAt: Temporal.DateTime? public var updatedAt: Temporal.DateTime? public init(postId: String, sk: Int) { self.init(postId: postId, sk: sk, createdAt: nil, updatedAt: nil) } internal init(postId: String, sk: Int, createdAt: Temporal.DateTime? = nil, updatedAt: Temporal.DateTime? = nil) { self.postId = postId self.sk = sk self.createdAt = createdAt self.updatedAt = updatedAt } }