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