Info
public struct Info : Codable
Information about the article.
-
Statistics about the article.
Declaration
Swift
public let statistics: Stat
-
Title of the article.
Declaration
Swift
public let title: String
-
Cover image url.
Declaration
Swift
public let _bannerURL: String
-
Author id.
Declaration
Swift
public let mid: Int
-
Author’s name.
Declaration
Swift
public let author: String
-
Cropped to show in the preview.
Declaration
Swift
public let croppedImageURLs: [URL]
-
Actual images to display in article.
Declaration
Swift
public let originalImageURLs: [URL]
-
Is in a column collection.
Declaration
Swift
public let isInList: Bool
-
Id of the previous article in the same column collection.
Declaration
Swift
public let previousArticleIDInList: Int
-
Id of the next article in the same column collection.
Declaration
Swift
public let nextArticleIDInList: Int
-
Info relevant to the current user about the article.
See moreDeclaration
Swift
public struct ForCurrentUser
-
The data is only valid if
BKUser.current
exists.Declaration
Swift
public var currentUser: ForCurrentUser { get }
-
The actual cover image used.
Declaration
Swift
public var coverImageURL: URL { get }