Example #1
0
        /// <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 Field23E newInstance(Field23E source)
        {
            Field23E cp = new Field23E();

            cp.Components = new List <>(source.Components);
            return(cp);
        }
Example #2
0
        public static Field23E fromJson(string json)
        {
            Field23E   field      = new Field23E();
            JsonParser parser     = new JsonParser();
            JsonObject jsonObject = (JsonObject)parser.parse(json);

            if (jsonObject.get("code") != null)
            {
                field.Component1 = jsonObject.get("code").AsString;
            }
            if (jsonObject.get("additionalInformation") != null)
            {
                field.Component2 = jsonObject.get("additionalInformation").AsString;
            }
            return(field);
        }