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