Config

The RTE configuration class.

class Config {
 public:
 
  void SetAppId(const char *app_id, Error *err);
  const char* GetAppId(Error *err);
  void SetJsonParameter(const char *json_parameter, Error *err = nullptr);
  std::string GetJsonParameter(Error *err = nullptr)
};
Since
v4.5.0

Method

SetAppId
Sets an App ID. See SetAppId.
GetAppId
Gets the App ID you set. See GetAppId.
SetJsonParameter
Sets the SDK JSON configuration. See SetJsonParameter.
GetJsonParameter
Get the SDK JSON configuration. See GetJsonParameter.