CallbackType

public enum CallbackType : String

Enum that specifies how to invoke the callback URL.

  • Unspecified callback type; defaults to SYSTEM for universal links.

    Declaration

    Swift

    case UNKNOWN
  • The callback returns JSON, expects HTTP status 200 for success.

    Declaration

    Swift

    case JSON
  • The callback will open with the default system URL handler.

    Declaration

    Swift

    case SYSTEM
  • The callback accepts POST data and returns JSON, expects HTTP status 200 for success.

    Declaration

    Swift

    case POST