CollectionFolder

public struct CollectionFolder : XMLRepresentable

A container to group other collection elements.

  • The collection subfolders contained in the collection folder.

    Declaration

    Swift

    public var collectionFolders: [CollectionFolder]
  • The keyword collections contained in the collection folder.

    Declaration

    Swift

    public var keywordCollections: [KeywordCollection]
  • The smart collections contained in the collection folder.

    Declaration

    Swift

    public var smartCollections: [SmartCollection]
  • The name of the collection folder.

    Declaration

    Swift

    public var name: String
  • Initializes a new collection folder.

    Declaration

    Swift

    public init(name: String)

    Parameters

    name

    The name of the collection folder.