/// <summary> /// Copy constructor.<br> /// Initializes the components list with a deep copy of the source components list. </summary> /// <param name="source"> a field instance to copy /// @since 7.7 </param> public static Field15M newInstance(Field15M source) { Field15M cp = new Field15M(); cp.Components = new List <>(source.Components); return(cp); }
public static Field15M fromJson(string json) { Field15M field = new Field15M(); JsonParser parser = new JsonParser(); JsonObject jsonObject = (JsonObject)parser.parse(json); return(field); }