Content
public struct Content : Codable, Equatable
The full input content that the service is to analyze.
-
An array of
ContentItemobjects that provides the text that is to be analyzed.Declaration
Swift
public var contentItems: [ContentItem] -
Initialize a
Contentwith member variables.Declaration
Swift
public init( contentItems: [ContentItem] )Parameters
contentItemsAn array of
ContentItemobjects that provides the text that is to be analyzed.Return Value
An initialized
Content.
View on GitHub
Content Structure Reference