amplify-swift/AmplifyTestCommon/Models/TransformerV2/7V2/Blog7V2.swift

40 lines
922 B
Swift

//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
// swiftlint:disable all
import Amplify
import Foundation
public struct Blog7V2: Model {
public let id: String
public var name: String
public var posts: List<Post7V2>?
public var createdAt: Temporal.DateTime?
public var updatedAt: Temporal.DateTime?
public init(id: String = UUID().uuidString,
name: String,
posts: List<Post7V2>? = []) {
self.init(id: id,
name: name,
posts: posts,
createdAt: nil,
updatedAt: nil)
}
internal init(id: String = UUID().uuidString,
name: String,
posts: List<Post7V2>? = [],
createdAt: Temporal.DateTime? = nil,
updatedAt: Temporal.DateTime? = nil) {
self.id = id
self.name = name
self.posts = posts
self.createdAt = createdAt
self.updatedAt = updatedAt
}
}