public static IDictionary <string, object> getUserPathUpdateProperties(UpdateUserPathParams updateParams)
        {
            IDictionary <string, object> properties = new Dictionary <string, object>();

            properties[MATCHING_THRESHOLD]       = updateParams.MatchingThreshold;
            properties[UPDATE_SHARED_CONTAINERS] = updateParams.UpdateSharedContainers;
            properties[INCLUDE_VARIABLES]        = updateParams.IncludeVariables;
            properties[DELETE_RECORDING]         = updateParams.DeleteRecording;
            properties[NAME] = updateParams.Name;
            return(properties);
        }
 /// <summary>
 /// Use this parameter in order to launch a User Path Update at the end of the post recording.</summary>
 public StopRecordingParamsBuilder updateParams(UpdateUserPathParams updateParams)
 {
     this.UpdateParams = updateParams;
     return(this);
 }