ContentRequest

public enum ContentRequest : URLRequestConvertible

Enumeration of network requests for Content.

  • Get all content tokens.

    Declaration

    Swift

    case getContentTokens
  • Get all content pages.

    Declaration

    Swift

    case getContentPages
  • Get content page with internalName.

    Declaration

    Swift

    case getContentPage(internalName: String)
  • Get content page with id.

    Declaration

    Swift

    case getContentPageWith(id: Int)
  • Get all static files.

    Declaration

    Swift

    case getStaticFiles
  • Get static file with fileName.

    Declaration

    Swift

    case getStaticFile(fileName: String)
  • Declaration

    Swift

    public var path: String { get }