FeaturedTag
public struct FeaturedTag : Codable, Hashable, Identifiable
Undocumented
-
ID of the featured tag in database.
Declaration
Swift
public var id: String
-
Name of the tag being featured.
Declaration
Swift
public var name: String
-
Link to all posts by a user that contain this tag.
Declaration
Swift
public var url: String
-
Number of authored posts containing this tag.
Declaration
Swift
public var postsCount: Int
-
The date of last authored post containing this tag.
Declaration
Swift
public var lastPostAt: Date?
-
Undocumented
Declaration
Swift
public init(id: String, name: String, url: String, postsCount: Int, lastPostAt: Date? = nil)
-
Declaration
Swift
public init(from decoder: Decoder) throws