setAdditionalProperty method

void setAdditionalProperty(
  1. String path,
  2. Object value
)

Sets an additional property.

Implementation

void setAdditionalProperty(String path, Object value) {
  //TODO : In the original OMH Java class it is stated that "This method supports dot-separated paths by creating nested maps when necessary." Is not implemented here.
  _additionalProperties[path] = value;
}