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