Structure
Article
public struct Article: Codable
see https://github.com/gothinkster/realworld/blob/master/api/swagger.json
Relationships
Nested Types
Article.CodingKeys
Conforms To
Codable
Initializers
init(slug:title:_description:body:tagList:createdAt:updatedAt:favorited:favoritesCount:author:)
public init(slug: String, title: String, _description: String, body: String, tagList: [String], createdAt: Date, updatedAt: Date, favorited: Bool, favoritesCount: Int, author: Profile)
Properties
slug
public var slug: String
title
public var title: String
_description
public var _description: String
body
public var body: String
tagList
public var tagList: [String]
createdAt
public var createdAt: Date
updatedAt
public var updatedAt: Date
favorited
public var favorited: Bool
favoritesCount
public var favoritesCount: Int