Block

public struct Block : Decodable

A block representation contains “attributes” and “blockTypes” (which represent nested blocks).

  • attributes describes 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 more

    Declaration

    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 more

    Declaration

    Swift

    public struct BlockType : Decodable