Structure
Comment
public struct Comment: Codable
see https://github.com/gothinkster/realworld/blob/master/api/swagger.json
Relationships
Nested Types
Comment.CodingKeys
Conforms To
Codable
Initializers
init(_id:createdAt:updatedAt:body:author:)
public init(_id: Int, createdAt: Date, updatedAt: Date, body: String, author: Profile)
Properties
_id
public var _id: Int
createdAt
public var createdAt: Date
updatedAt
public var updatedAt: Date
body
public var body: String