DynamicData =========== .. py:function:: model.DynamicData() :return: A new DynamicData object with an empty dictionary :rtype: DynamicData Creates a new DynamicData object with an empty dictionary. .. py:function:: model.DynamicData(datadict) :param object datadict: Dictionary-like object to populate the DynamicData :return: A new DynamicData object initialized with the provided dictionary data :rtype: DynamicData Creates a new DynamicData object initialized with data from an existing dictionary-like object. .. py:function:: model.GetValue(key) :param str key: Dictionary key to look up :return: The value associated with the key, or null if key doesn't exist :rtype: object Gets a value from the DynamicData dictionary by key. .. py:function:: model.Remove(name) :param str name: Dictionary key to remove Removes an entry from the DynamicData dictionary by key if it exists. .. py:function:: model.AddValue(name, value) :param str name: Dictionary key to add or update :param object value: Value to store Adds or updates a value in the DynamicData dictionary. .. py:function:: model.SetValue(name, value) :param str name: Dictionary key to add or update :param str value: String value to store (will be converted to appropriate type if possible) Adds or updates a value in the DynamicData dictionary, attempting to convert string values to numeric types if appropriate. .. py:function:: model.ToString() :return: JSON string representation of the DynamicData dictionary :rtype: str Returns a formatted JSON string representation of the DynamicData object. .. py:function:: model.ToFlatString() :return: Flat JSON string representation with empty values removed and single quotes escaped :rtype: str Returns a flat JSON string representation of the DynamicData object with empty values removed. .. py:function:: model.Keys(metadata) :param DynamicData metadata: Optional metadata for filtering keys :return: List of keys in the DynamicData dictionary :rtype: List[str] Returns a list of keys in the DynamicData dictionary, optionally filtered by metadata. .. py:function:: model.SpecialKeys(metadata) :param DynamicData metadata: Metadata for identifying special keys :return: List of keys marked as special in the metadata :rtype: List[str] Returns a list of keys from the metadata that are marked as special.