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