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