/// <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 Field13B newInstance(Field13B source) { Field13B cp = new Field13B(); cp.Components = new List <>(source.Components); return(cp); }
public static Field13B fromJson(string json) { Field13B field = new Field13B(); 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("number") != null) { field.Component3 = jsonObject.get("number").AsString; } return(field); }