Interface IUpdateCustomParametersParams

All Superinterfaces:
Serializable
All Known Implementing Classes:
UpdateModelParams

public interface IUpdateCustomParametersParams extends Serializable
Interface describing the parameters that are passed to ICustomParametersUpdateable.updateCustomParams(IUpdateCustomParametersParams). Contains the JSON data to be updated, as well as the current and previous version. You may assume the current and previous version are different, but the previous version may not necessarily be lower than the current version.
Since:
7.0.0
Author:
XIMA MEDIA GmbH
  • Method Details

    • getDataModelJson

      com.alibaba.fastjson.JSONObject getDataModelJson()
      Returns:
      The JSON data that needs to be updated.
    • getCurrentVersion

      String getCurrentVersion()
      Returns:
      The current version of the custom parameters.
    • getPreviousVersion

      String getPreviousVersion()
      Returns:
      The previous version that was used to create the given getDataModelJson().