/// <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 Field22P newInstance(Field22P source) { Field22P cp = new Field22P(); cp.Components = new List <>(source.Components); return(cp); }
public static Field22P fromJson(string json) { Field22P field = new Field22P(); JsonParser parser = new JsonParser(); JsonObject jsonObject = (JsonObject)parser.parse(json); if (jsonObject.get("type") != null) { field.Component1 = jsonObject.get("type").AsString; } return(field); }