BigML.Model.ModelStructure C# (CSharp) Method

ModelStructure() public method

All the information that you need to recreate or use the model on your own. It includes a very intuitive description of the tree-like structure that made the model up and the field's dictionary describing the fields and their summaries.
public ModelStructure ( DataSet.Field>.Dictionary fields = null ) : LocalModel
fields DataSet.Field>.Dictionary
return LocalModel
        public LocalModel ModelStructure(Dictionary<string, DataSet.Field> fields=null)
        {
            if (_modelStruture == null)
            {
                _modelStruture = new LocalModel(Object.model, fields);
            }
            return _modelStruture;
        }