Block
public struct Block : Decodable
A block representation contains “attributes” and “blockTypes” (which represent nested blocks).
-
attributesdescribes any attributes that appear directly inside the block. Keys in this map are the attribute names.Declaration
Swift
public let attributes: [String : Attribute]? -
Undocumented
See moreDeclaration
Swift
public struct Attribute : Decodable -
`blockTypes" describes any nested blocks that appear directly inside the block. Keys in this map are the names of the blockTypes.
Declaration
Swift
public let blockTypes: [String : BlockType]? -
Undocumented
See moreDeclaration
Swift
public struct BlockType : Decodable