public ThreeDSecureInfo(NodeWrapper node)
        {
            if (node == null)
            {
                return;
            }

            AcsTransactionId                = node.GetString("acs-transaction-id");
            Cavv                            = node.GetString("cavv");
            DsTransactionId                 = node.GetString("ds-transaction-id");
            EciFlag                         = node.GetString("eci-flag");
            Enrolled                        = node.GetString("enrolled");
            LiabilityShiftPossible          = node.GetBoolean("liability-shift-possible");
            LiabilityShifted                = node.GetBoolean("liability-shifted");
            ParesStatus                     = node.GetString("pares-status");
            Status                          = node.GetString("status");
            ThreeDSecureAuthenticationId    = node.GetString("three-d-secure-authentication-id");
            ThreeDSecureServerTransactionId = node.GetString("three-d-secure-server-transaction-id");
            ThreeDSecureVersion             = node.GetString("three-d-secure-version");
            Xid = node.GetString("xid");

            var AuthenticationNode = node.GetNode("authentication");

            if (AuthenticationNode != null)
            {
                Authentication = new ThreeDSecureAuthenticationInfo(AuthenticationNode);
            }

            var LookupNode = node.GetNode("lookup");

            if (LookupNode != null)
            {
                Lookup = new ThreeDSecureLookupInfo(LookupNode);
            }
        }