All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adyen.model.transferwebhooks.TransferEventTrackingData Maven / Gradle / Ivy

There is a newer version: 38.1.0
Show newest version
/*
 * Transfer webhooks
 *
 * The version of the OpenAPI document: 4
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package com.adyen.model.transferwebhooks;

import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.adyen.model.transferwebhooks.ConfirmationTrackingData;
import com.adyen.model.transferwebhooks.EstimationTrackingData;
import com.adyen.model.transferwebhooks.InternalReviewTrackingData;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.time.OffsetDateTime;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.core.JsonProcessingException;

import com.fasterxml.jackson.core.type.TypeReference;

import jakarta.ws.rs.core.GenericType;
import jakarta.ws.rs.core.Response;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.JsonToken;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.MapperFeature;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;


@JsonDeserialize(using = TransferEventTrackingData.TransferEventTrackingDataDeserializer.class)
@JsonSerialize(using = TransferEventTrackingData.TransferEventTrackingDataSerializer.class)
public class TransferEventTrackingData extends AbstractOpenApiSchema {
    private static final Logger log = Logger.getLogger(TransferEventTrackingData.class.getName());

    public static class TransferEventTrackingDataSerializer extends StdSerializer {
        public TransferEventTrackingDataSerializer(Class t) {
            super(t);
        }

        public TransferEventTrackingDataSerializer() {
            this(null);
        }

        @Override
        public void serialize(TransferEventTrackingData value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonProcessingException {
            jgen.writeObject(value.getActualInstance());
        }
    }

    public static class TransferEventTrackingDataDeserializer extends StdDeserializer {
        public TransferEventTrackingDataDeserializer() {
            this(TransferEventTrackingData.class);
        }

        public TransferEventTrackingDataDeserializer(Class vc) {
            super(vc);
        }

        @Override
        public TransferEventTrackingData deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException {
            JsonNode tree = jp.readValueAsTree();
            Object deserialized = null;
            boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS);
            int match = 0;
            JsonToken token = tree.traverse(jp.getCodec()).nextToken();
            // deserialize ConfirmationTrackingData
            try {
                boolean attemptParsing = true;
                if (attemptParsing) {
                    // Checks if the unique type of the oneOf json matches any of the object TypeEnum values
                    boolean typeMatch = Arrays.stream(ConfirmationTrackingData.TypeEnum.values()).anyMatch((t) -> t.getValue().contains(tree.findValue("type").asText()));

                    if(typeMatch) {
                        deserialized = tree.traverse(jp.getCodec()).readValueAs(ConfirmationTrackingData.class);
                        // TODO: there is no validation against JSON schema constraints
                        // (min, max, enum, pattern...), this does not perform a strict JSON
                        // validation, which means the 'match' count may be higher than it should be.
                        match++;
                        log.log(Level.FINER, "Input data matches schema 'ConfirmationTrackingData'");
                    }
                }
            } catch (Exception e) {
                // deserialization failed, continue
                log.log(Level.FINER, "Input data does not match schema 'ConfirmationTrackingData'", e);
            }

            // deserialize EstimationTrackingData
            try {
                boolean attemptParsing = true;
                if (attemptParsing) {
                    // Checks if the unique type of the oneOf json matches any of the object TypeEnum values
                    boolean typeMatch = Arrays.stream(EstimationTrackingData.TypeEnum.values()).anyMatch((t) -> t.getValue().contains(tree.findValue("type").asText()));

                    if(typeMatch) {
                        deserialized = tree.traverse(jp.getCodec()).readValueAs(EstimationTrackingData.class);
                        // TODO: there is no validation against JSON schema constraints
                        // (min, max, enum, pattern...), this does not perform a strict JSON
                        // validation, which means the 'match' count may be higher than it should be.
                        match++;
                        log.log(Level.FINER, "Input data matches schema 'EstimationTrackingData'");
                    }
                }
            } catch (Exception e) {
                // deserialization failed, continue
                log.log(Level.FINER, "Input data does not match schema 'EstimationTrackingData'", e);
            }

            // deserialize InternalReviewTrackingData
            try {
                boolean attemptParsing = true;
                if (attemptParsing) {
                    // Checks if the unique type of the oneOf json matches any of the object TypeEnum values
                    boolean typeMatch = Arrays.stream(InternalReviewTrackingData.TypeEnum.values()).anyMatch((t) -> t.getValue().contains(tree.findValue("type").asText()));

                    if(typeMatch) {
                        deserialized = tree.traverse(jp.getCodec()).readValueAs(InternalReviewTrackingData.class);
                        // TODO: there is no validation against JSON schema constraints
                        // (min, max, enum, pattern...), this does not perform a strict JSON
                        // validation, which means the 'match' count may be higher than it should be.
                        match++;
                        log.log(Level.FINER, "Input data matches schema 'InternalReviewTrackingData'");
                    }
                }
            } catch (Exception e) {
                // deserialization failed, continue
                log.log(Level.FINER, "Input data does not match schema 'InternalReviewTrackingData'", e);
            }

            if (match == 1) {
                TransferEventTrackingData ret = new TransferEventTrackingData();
                ret.setActualInstance(deserialized);
                return ret;
            }
            throw new IOException(String.format("Failed deserialization for TransferEventTrackingData: %d classes match result, expected 1", match));
        }

        /**
         * Handle deserialization of the 'null' value.
         */
        @Override
        public TransferEventTrackingData getNullValue(DeserializationContext ctxt) throws JsonMappingException {
            throw new JsonMappingException(ctxt.getParser(), "TransferEventTrackingData cannot be null");
        }
    }

    // store a list of schema names defined in oneOf
    public static final Map> schemas = new HashMap<>();

    public TransferEventTrackingData() {
        super("oneOf", Boolean.FALSE);
    }

    public TransferEventTrackingData(ConfirmationTrackingData o) {
        super("oneOf", Boolean.FALSE);
        setActualInstance(o);
    }

    public TransferEventTrackingData(EstimationTrackingData o) {
        super("oneOf", Boolean.FALSE);
        setActualInstance(o);
    }

    public TransferEventTrackingData(InternalReviewTrackingData o) {
        super("oneOf", Boolean.FALSE);
        setActualInstance(o);
    }

    static {
        schemas.put("ConfirmationTrackingData", new GenericType() {
        });
        schemas.put("EstimationTrackingData", new GenericType() {
        });
        schemas.put("InternalReviewTrackingData", new GenericType() {
        });
        JSON.registerDescendants(TransferEventTrackingData.class, Collections.unmodifiableMap(schemas));
    }

    @Override
    public Map> getSchemas() {
        return TransferEventTrackingData.schemas;
    }

    /**
     * Set the instance that matches the oneOf child schema, check
     * the instance parameter is valid against the oneOf child schemas:
     * ConfirmationTrackingData, EstimationTrackingData, InternalReviewTrackingData
     *
     * It could be an instance of the 'oneOf' schemas.
     * The oneOf child schemas may themselves be a composed schema (allOf, anyOf, oneOf).
     */
    @Override
    public void setActualInstance(Object instance) {
        if (JSON.isInstanceOf(ConfirmationTrackingData.class, instance, new HashSet<>())) {
            super.setActualInstance(instance);
            return;
        }

        if (JSON.isInstanceOf(EstimationTrackingData.class, instance, new HashSet<>())) {
            super.setActualInstance(instance);
            return;
        }

        if (JSON.isInstanceOf(InternalReviewTrackingData.class, instance, new HashSet<>())) {
            super.setActualInstance(instance);
            return;
        }

        throw new RuntimeException("Invalid instance type. Must be ConfirmationTrackingData, EstimationTrackingData, InternalReviewTrackingData");
    }

    /**
     * Get the actual instance, which can be the following:
     * ConfirmationTrackingData, EstimationTrackingData, InternalReviewTrackingData
     *
     * @return The actual instance (ConfirmationTrackingData, EstimationTrackingData, InternalReviewTrackingData)
     */
    @Override
    public Object getActualInstance() {
        return super.getActualInstance();
    }

    /**
     * Get the actual instance of `ConfirmationTrackingData`. If the actual instance is not `ConfirmationTrackingData`,
     * the ClassCastException will be thrown.
     *
     * @return The actual instance of `ConfirmationTrackingData`
     * @throws ClassCastException if the instance is not `ConfirmationTrackingData`
     */
    public ConfirmationTrackingData getConfirmationTrackingData() throws ClassCastException {
        return (ConfirmationTrackingData)super.getActualInstance();
    }

    /**
     * Get the actual instance of `EstimationTrackingData`. If the actual instance is not `EstimationTrackingData`,
     * the ClassCastException will be thrown.
     *
     * @return The actual instance of `EstimationTrackingData`
     * @throws ClassCastException if the instance is not `EstimationTrackingData`
     */
    public EstimationTrackingData getEstimationTrackingData() throws ClassCastException {
        return (EstimationTrackingData)super.getActualInstance();
    }

    /**
     * Get the actual instance of `InternalReviewTrackingData`. If the actual instance is not `InternalReviewTrackingData`,
     * the ClassCastException will be thrown.
     *
     * @return The actual instance of `InternalReviewTrackingData`
     * @throws ClassCastException if the instance is not `InternalReviewTrackingData`
     */
    public InternalReviewTrackingData getInternalReviewTrackingData() throws ClassCastException {
        return (InternalReviewTrackingData)super.getActualInstance();
    }


    /**
    * Create an instance of TransferEventTrackingData given an JSON string
    *
    * @param jsonString JSON string
    * @return An instance of TransferEventTrackingData
    * @throws IOException if the JSON string is invalid with respect to TransferEventTrackingData
    */
    public static TransferEventTrackingData fromJson(String jsonString) throws IOException {
        return JSON.getMapper().readValue(jsonString, TransferEventTrackingData.class);
    }

    /**
    * Convert an instance of TransferEventTrackingData to an JSON string
    *
    * @return JSON string
    */
    public String toJson() throws JsonProcessingException {
        return JSON.getMapper().writeValueAsString(this);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy