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

com.fireblocks.sdk.model.PolicyRuleAmount Maven / Gradle / Ivy

/*
 * Fireblocks API
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.6.2
 * 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.fireblocks.sdk.model;


import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.JsonNode;
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.fireblocks.sdk.JSON;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.StringJoiner;
import java.util.logging.Level;
import java.util.logging.Logger;

@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
@JsonDeserialize(using = PolicyRuleAmount.PolicyRuleAmountDeserializer.class)
@JsonSerialize(using = PolicyRuleAmount.PolicyRuleAmountSerializer.class)
public class PolicyRuleAmount extends AbstractOpenApiSchema {
    private static final Logger log = Logger.getLogger(PolicyRuleAmount.class.getName());

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

        public PolicyRuleAmountSerializer() {
            this(null);
        }

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

    public static class PolicyRuleAmountDeserializer extends StdDeserializer {
        public PolicyRuleAmountDeserializer() {
            this(PolicyRuleAmount.class);
        }

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

        @Override
        public PolicyRuleAmount deserialize(JsonParser jp, DeserializationContext ctxt)
                throws IOException, JsonProcessingException {
            JsonNode tree = jp.readValueAsTree();

            Object deserialized = null;
            // deserialize BigDecimal
            try {
                deserialized = tree.traverse(jp.getCodec()).readValueAs(BigDecimal.class);
                PolicyRuleAmount ret = new PolicyRuleAmount();
                ret.setActualInstance(deserialized);
                return ret;
            } catch (Exception e) {
                // deserialization failed, continue, log to help debugging
                log.log(Level.FINER, "Input data does not match 'PolicyRuleAmount'", e);
            }

            // deserialize String
            try {
                deserialized = tree.traverse(jp.getCodec()).readValueAs(String.class);
                PolicyRuleAmount ret = new PolicyRuleAmount();
                ret.setActualInstance(deserialized);
                return ret;
            } catch (Exception e) {
                // deserialization failed, continue, log to help debugging
                log.log(Level.FINER, "Input data does not match 'PolicyRuleAmount'", e);
            }

            throw new IOException(
                    String.format("Failed deserialization for PolicyRuleAmount: no match found"));
        }

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

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

    public PolicyRuleAmount() {
        super("anyOf", Boolean.FALSE);
    }

    public PolicyRuleAmount(BigDecimal o) {
        super("anyOf", Boolean.FALSE);
        setActualInstance(o);
    }

    public PolicyRuleAmount(String o) {
        super("anyOf", Boolean.FALSE);
        setActualInstance(o);
    }

    static {
        schemas.put("BigDecimal", BigDecimal.class);
        schemas.put("String", String.class);
        JSON.registerDescendants(PolicyRuleAmount.class, Collections.unmodifiableMap(schemas));
    }

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

    /**
     * Set the instance that matches the anyOf child schema, check the instance parameter is valid
     * against the anyOf child schemas: BigDecimal, String
     *
     * 

It could be an instance of the 'anyOf' schemas. The anyOf child schemas may themselves be * a composed schema (allOf, anyOf, anyOf). */ @Override public void setActualInstance(Object instance) { if (JSON.isInstanceOf(BigDecimal.class, instance, new HashSet>())) { super.setActualInstance(instance); return; } if (JSON.isInstanceOf(String.class, instance, new HashSet>())) { super.setActualInstance(instance); return; } throw new RuntimeException("Invalid instance type. Must be BigDecimal, String"); } /** * Get the actual instance, which can be the following: BigDecimal, String * * @return The actual instance (BigDecimal, String) */ @Override public Object getActualInstance() { return super.getActualInstance(); } /** * Get the actual instance of `BigDecimal`. If the actual instance is not `BigDecimal`, the * ClassCastException will be thrown. * * @return The actual instance of `BigDecimal` * @throws ClassCastException if the instance is not `BigDecimal` */ public BigDecimal getBigDecimal() throws ClassCastException { return (BigDecimal) super.getActualInstance(); } /** * Get the actual instance of `String`. If the actual instance is not `String`, the * ClassCastException will be thrown. * * @return The actual instance of `String` * @throws ClassCastException if the instance is not `String` */ public String getString() throws ClassCastException { return (String) super.getActualInstance(); } /** * Convert the instance into URL query string. * * @return URL query string */ public String toUrlQueryString() { return toUrlQueryString(null); } /** * Convert the instance into URL query string. * * @param prefix prefix of the query string * @return URL query string */ public String toUrlQueryString(String prefix) { String suffix = ""; String containerSuffix = ""; String containerPrefix = ""; if (prefix == null) { // style=form, explode=true, e.g. /pet?name=cat&type=manx prefix = ""; } else { // deepObject style e.g. /pet?id[name]=cat&id[type]=manx prefix = prefix + "["; suffix = "]"; containerSuffix = "]"; containerPrefix = "["; } StringJoiner joiner = new StringJoiner("&"); return null; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy