amplify-swift/AmplifyPlugins/API/Tests/APIHostApp/AWSAPIPluginFunctionalTests/Models/Comment3+Schema.swift

35 lines
881 B
Swift

// swiftlint:disable all
import Amplify
import Foundation
extension Comment3 {
// MARK: - CodingKeys
public enum CodingKeys: String, ModelKey {
case id
case postID
case content
case createdAt
case updatedAt
}
public static let keys = CodingKeys.self
// MARK: - ModelSchema
public static let schema = defineSchema { model in
let comment3 = Comment3.keys
model.pluralName = "Comment3s"
model.attributes(
.index(fields: ["postID", "content"], name: "byPost3")
)
model.fields(
.id(),
.field(comment3.postID, is: .required, ofType: .string),
.field(comment3.content, is: .required, ofType: .string),
.field(comment3.createdAt, is: .optional, isReadOnly: true, ofType: .dateTime),
.field(comment3.updatedAt, is: .optional, isReadOnly: true, ofType: .dateTime)
)
}
}