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

com.conekta.model.ChargeResponsePaymentMethod Maven / Gradle / Ivy

Go to download

This is a java library that allows interaction with https://api.conekta.io API.

There is a newer version: 6.1.3
Show newest version
/*
 * Conekta API
 * Conekta sdk
 *
 * The version of the OpenAPI document: 2.1.0
 * Contact: [email protected]
 *
 * 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.conekta.model;

import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.conekta.model.PaymentMethodBankTransfer;
import com.conekta.model.PaymentMethodCard;
import com.conekta.model.PaymentMethodCash;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.conekta.JSON;

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

import javax.ws.rs.core.GenericType;
import javax.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;
import com.conekta.JSON;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0")
@JsonDeserialize(using = ChargeResponsePaymentMethod.ChargeResponsePaymentMethodDeserializer.class)
@JsonSerialize(using = ChargeResponsePaymentMethod.ChargeResponsePaymentMethodSerializer.class)
public class ChargeResponsePaymentMethod extends AbstractOpenApiSchema {
    private static final Logger log = Logger.getLogger(ChargeResponsePaymentMethod.class.getName());

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

        public ChargeResponsePaymentMethodSerializer() {
            this(null);
        }

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

    public static class ChargeResponsePaymentMethodDeserializer extends StdDeserializer {
        public ChargeResponsePaymentMethodDeserializer() {
            this(ChargeResponsePaymentMethod.class);
        }

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

        @Override
        public ChargeResponsePaymentMethod deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException {
            JsonNode tree = jp.readValueAsTree();
            Object deserialized = null;
            ChargeResponsePaymentMethod newChargeResponsePaymentMethod = new ChargeResponsePaymentMethod();
            Map result2 = tree.traverse(jp.getCodec()).readValueAs(new TypeReference>() {});
            String discriminatorValue = (String)result2.get("object");
            switch (discriminatorValue) {
                case "bank_transfer_payment":
                    deserialized = tree.traverse(jp.getCodec()).readValueAs(PaymentMethodBankTransfer.class);
                    newChargeResponsePaymentMethod.setActualInstance(deserialized);
                    return newChargeResponsePaymentMethod;
                case "card_payment":
                    deserialized = tree.traverse(jp.getCodec()).readValueAs(PaymentMethodCard.class);
                    newChargeResponsePaymentMethod.setActualInstance(deserialized);
                    return newChargeResponsePaymentMethod;
                case "cash_payment":
                    deserialized = tree.traverse(jp.getCodec()).readValueAs(PaymentMethodCash.class);
                    newChargeResponsePaymentMethod.setActualInstance(deserialized);
                    return newChargeResponsePaymentMethod;
                case "payment_method_bank_transfer":
                    deserialized = tree.traverse(jp.getCodec()).readValueAs(PaymentMethodBankTransfer.class);
                    newChargeResponsePaymentMethod.setActualInstance(deserialized);
                    return newChargeResponsePaymentMethod;
                case "payment_method_card":
                    deserialized = tree.traverse(jp.getCodec()).readValueAs(PaymentMethodCard.class);
                    newChargeResponsePaymentMethod.setActualInstance(deserialized);
                    return newChargeResponsePaymentMethod;
                case "payment_method_cash":
                    deserialized = tree.traverse(jp.getCodec()).readValueAs(PaymentMethodCash.class);
                    newChargeResponsePaymentMethod.setActualInstance(deserialized);
                    return newChargeResponsePaymentMethod;
                default:
                    log.log(Level.WARNING, String.format("Failed to lookup discriminator value `%s` for ChargeResponsePaymentMethod. Possible values: bank_transfer_payment card_payment cash_payment payment_method_bank_transfer payment_method_card payment_method_cash", discriminatorValue));
            }

            boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS);
            int match = 0;
            JsonToken token = tree.traverse(jp.getCodec()).nextToken();
            // deserialize PaymentMethodCash
            try {
                boolean attemptParsing = true;
                if (attemptParsing) {
                    deserialized = tree.traverse(jp.getCodec()).readValueAs(PaymentMethodCash.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 'PaymentMethodCash'");
                }
            } catch (Exception e) {
                // deserialization failed, continue
                log.log(Level.FINER, "Input data does not match schema 'PaymentMethodCash'", e);
            }

            // deserialize PaymentMethodCard
            try {
                boolean attemptParsing = true;
                if (attemptParsing) {
                    deserialized = tree.traverse(jp.getCodec()).readValueAs(PaymentMethodCard.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 'PaymentMethodCard'");
                }
            } catch (Exception e) {
                // deserialization failed, continue
                log.log(Level.FINER, "Input data does not match schema 'PaymentMethodCard'", e);
            }

            // deserialize PaymentMethodBankTransfer
            try {
                boolean attemptParsing = true;
                if (attemptParsing) {
                    deserialized = tree.traverse(jp.getCodec()).readValueAs(PaymentMethodBankTransfer.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 'PaymentMethodBankTransfer'");
                }
            } catch (Exception e) {
                // deserialization failed, continue
                log.log(Level.FINER, "Input data does not match schema 'PaymentMethodBankTransfer'", e);
            }

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

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

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

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

    public ChargeResponsePaymentMethod(PaymentMethodCash o) {
        super("oneOf", Boolean.FALSE);
        setActualInstance(o);
    }

    public ChargeResponsePaymentMethod(PaymentMethodCard o) {
        super("oneOf", Boolean.FALSE);
        setActualInstance(o);
    }

    public ChargeResponsePaymentMethod(PaymentMethodBankTransfer o) {
        super("oneOf", Boolean.FALSE);
        setActualInstance(o);
    }

    static {
        schemas.put("PaymentMethodBankTransfer", new GenericType() {
        });
        schemas.put("PaymentMethodCard", new GenericType() {
        });
        schemas.put("PaymentMethodCash", new GenericType() {
        });
        JSON.registerDescendants(ChargeResponsePaymentMethod.class, Collections.unmodifiableMap(schemas));
        // Initialize and register the discriminator mappings.
        Map> mappings = new HashMap<>();
        mappings.put("bank_transfer_payment", PaymentMethodBankTransfer.class);
        mappings.put("card_payment", PaymentMethodCard.class);
        mappings.put("cash_payment", PaymentMethodCash.class);
        mappings.put("payment_method_bank_transfer", PaymentMethodBankTransfer.class);
        mappings.put("payment_method_card", PaymentMethodCard.class);
        mappings.put("payment_method_cash", PaymentMethodCash.class);
        mappings.put("charge_response_payment_method", ChargeResponsePaymentMethod.class);
        JSON.registerDiscriminator(ChargeResponsePaymentMethod.class, "object", mappings);
    }

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

    /**
     * Set the instance that matches the oneOf child schema, check
     * the instance parameter is valid against the oneOf child schemas:
     * PaymentMethodBankTransfer, PaymentMethodCard, PaymentMethodCash
     *
     * 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(PaymentMethodCash.class, instance, new HashSet<>())) {
            super.setActualInstance(instance);
            return;
        }

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

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

        throw new RuntimeException("Invalid instance type. Must be PaymentMethodBankTransfer, PaymentMethodCard, PaymentMethodCash");
    }

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

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

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

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy