MetadataDescription

public class MetadataDescription : NSObject, Codable

A MetadataDescription consists of:

  • A dictionary of metadata

    Declaration

    Swift

    public var metadataKeys: [String : Any]?
  • The title of the content

    Declaration

    Swift

    public var title: String?
  • Constructs a MetadataDescription

    Declaration

    Swift

    public init(metadataKeys: [String : Any]?, title: String? = nil)