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

com.twilio.rest.marketplace.v1.installedaddon.InstalledAddOnUsage Maven / Gradle / Ivy

There is a newer version: 10.6.3
Show newest version
/*
 * This code was generated by
 * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
 *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
 *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
 *
 * Twilio - Marketplace
 * This is the public Twilio REST API.
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

package com.twilio.rest.marketplace.v1.installedaddon;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.twilio.base.Resource;
import com.twilio.exception.ApiConnectionException;
import com.twilio.exception.ApiException;
import java.io.IOException;
import java.io.InputStream;
import java.math.BigDecimal;
import java.util.List;
import java.util.Objects;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.ToString;

@JsonIgnoreProperties(ignoreUnknown = true)
@ToString
public class InstalledAddOnUsage extends Resource {

    private static final long serialVersionUID = 201246203121312L;

    @ToString
    public static class MarketplaceV1InstalledAddOnInstalledAddOnUsageBillableItems {

        @JsonInclude(JsonInclude.Include.NON_EMPTY)
        @JsonProperty("quantity")
        @Getter
        @Setter
        private BigDecimal quantity;

        @JsonInclude(JsonInclude.Include.NON_EMPTY)
        @JsonProperty("sid")
        @Getter
        @Setter
        private String sid;

        @JsonInclude(JsonInclude.Include.NON_EMPTY)
        @JsonProperty("submitted")
        @Getter
        @Setter
        private Boolean submitted;

        public static MarketplaceV1InstalledAddOnInstalledAddOnUsageBillableItems fromJson(
            String jsonString,
            ObjectMapper mapper
        ) throws IOException {
            return mapper.readValue(
                jsonString,
                MarketplaceV1InstalledAddOnInstalledAddOnUsageBillableItems.class
            );
        }
    }

    @ToString
    public static class MarketplaceV1InstalledAddOnInstalledAddOnUsage {

        @JsonInclude(JsonInclude.Include.NON_EMPTY)
        @JsonProperty("totalSubmitted")
        @Getter
        @Setter
        private BigDecimal totalSubmitted;

        @JsonInclude(JsonInclude.Include.NON_EMPTY)
        @JsonProperty("billableItems")
        @Getter
        @Setter
        private List<
            MarketplaceV1InstalledAddOnInstalledAddOnUsageBillableItems
        > billableItems;

        public MarketplaceV1InstalledAddOnInstalledAddOnUsage(
            final List<
                MarketplaceV1InstalledAddOnInstalledAddOnUsageBillableItems
            > billableItems
        ) {
            this.billableItems = billableItems;
        }

        public static MarketplaceV1InstalledAddOnInstalledAddOnUsage fromJson(
            String jsonString,
            ObjectMapper mapper
        ) throws IOException {
            return mapper.readValue(
                jsonString,
                MarketplaceV1InstalledAddOnInstalledAddOnUsage.class
            );
        }
    }

    public static InstalledAddOnUsageCreator creator(
        final String pathInstalledAddOnSid,
        final InstalledAddOnUsage.MarketplaceV1InstalledAddOnInstalledAddOnUsage marketplaceV1InstalledAddOnInstalledAddOnUsage
    ) {
        return new InstalledAddOnUsageCreator(
            pathInstalledAddOnSid,
            marketplaceV1InstalledAddOnInstalledAddOnUsage
        );
    }

    /**
     * Converts a JSON String into a InstalledAddOnUsage object using the provided ObjectMapper.
     *
     * @param json Raw JSON String
     * @param objectMapper Jackson ObjectMapper
     * @return InstalledAddOnUsage object represented by the provided JSON
     */
    public static InstalledAddOnUsage fromJson(
        final String json,
        final ObjectMapper objectMapper
    ) {
        // Convert all checked exceptions to Runtime
        try {
            return objectMapper.readValue(json, InstalledAddOnUsage.class);
        } catch (final JsonMappingException | JsonParseException e) {
            throw new ApiException(e.getMessage(), e);
        } catch (final IOException e) {
            throw new ApiConnectionException(e.getMessage(), e);
        }
    }

    /**
     * Converts a JSON InputStream into a InstalledAddOnUsage object using the provided
     * ObjectMapper.
     *
     * @param json Raw JSON InputStream
     * @param objectMapper Jackson ObjectMapper
     * @return InstalledAddOnUsage object represented by the provided JSON
     */
    public static InstalledAddOnUsage fromJson(
        final InputStream json,
        final ObjectMapper objectMapper
    ) {
        // Convert all checked exceptions to Runtime
        try {
            return objectMapper.readValue(json, InstalledAddOnUsage.class);
        } catch (final JsonMappingException | JsonParseException e) {
            throw new ApiException(e.getMessage(), e);
        } catch (final IOException e) {
            throw new ApiConnectionException(e.getMessage(), e);
        }
    }

    public static String toJson(Object object, ObjectMapper mapper) {
        try {
            return mapper.writeValueAsString(object);
        } catch (final JsonMappingException e) {
            throw new ApiException(e.getMessage(), e);
        } catch (JsonProcessingException e) {
            throw new ApiException(e.getMessage(), e);
        } catch (final IOException e) {
            throw new ApiConnectionException(e.getMessage(), e);
        }
    }

    private final BigDecimal totalSubmitted;
    private final List<
        MarketplaceV1InstalledAddOnInstalledAddOnUsageBillableItems
    > billableItems;

    @JsonCreator
    private InstalledAddOnUsage(
        @JsonProperty("total_submitted") final BigDecimal totalSubmitted,
        @JsonProperty("billable_items") final List<
            MarketplaceV1InstalledAddOnInstalledAddOnUsageBillableItems
        > billableItems
    ) {
        this.totalSubmitted = totalSubmitted;
        this.billableItems = billableItems;
    }

    public final BigDecimal getTotalSubmitted() {
        return this.totalSubmitted;
    }

    public final List<
        MarketplaceV1InstalledAddOnInstalledAddOnUsageBillableItems
    > getBillableItems() {
        return this.billableItems;
    }

    @Override
    public boolean equals(final Object o) {
        if (this == o) {
            return true;
        }

        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        InstalledAddOnUsage other = (InstalledAddOnUsage) o;

        return (
            Objects.equals(totalSubmitted, other.totalSubmitted) &&
            Objects.equals(billableItems, other.billableItems)
        );
    }

    @Override
    public int hashCode() {
        return Objects.hash(totalSubmitted, billableItems);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy