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

com.commercetools.history.models.common.TaxedPrice Maven / Gradle / Ivy

There is a newer version: 17.15.1
Show newest version

package com.commercetools.history.models.common;

import java.time.*;
import java.util.*;
import java.util.function.Function;

import javax.annotation.Nullable;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;

import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.databind.annotation.*;

import io.vrap.rmf.base.client.utils.Generated;

/**
 * TaxedPrice
 *
 * 
* Example to create an instance using the builder pattern *
*

 *     TaxedPrice taxedPrice = TaxedPrice.builder()
 *             .totalNet(totalNetBuilder -> totalNetBuilder)
 *             .totalGross(totalGrossBuilder -> totalGrossBuilder)
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") @JsonDeserialize(as = TaxedPriceImpl.class) public interface TaxedPrice { /** *

Total net price of the Order.

* @return totalNet */ @NotNull @Valid @JsonProperty("totalNet") public Money getTotalNet(); /** *

Total gross price of the Order.

* @return totalGross */ @NotNull @Valid @JsonProperty("totalGross") public Money getTotalGross(); /** *

Total net price of the Order.

* @param totalNet value to be set */ public void setTotalNet(final Money totalNet); /** *

Total gross price of the Order.

* @param totalGross value to be set */ public void setTotalGross(final Money totalGross); /** * factory method * @return instance of TaxedPrice */ public static TaxedPrice of() { return new TaxedPriceImpl(); } /** * factory method to create a shallow copy TaxedPrice * @param template instance to be copied * @return copy instance */ public static TaxedPrice of(final TaxedPrice template) { TaxedPriceImpl instance = new TaxedPriceImpl(); instance.setTotalNet(template.getTotalNet()); instance.setTotalGross(template.getTotalGross()); return instance; } /** * factory method to create a deep copy of TaxedPrice * @param template instance to be copied * @return copy instance */ @Nullable public static TaxedPrice deepCopy(@Nullable final TaxedPrice template) { if (template == null) { return null; } TaxedPriceImpl instance = new TaxedPriceImpl(); instance.setTotalNet(com.commercetools.history.models.common.Money.deepCopy(template.getTotalNet())); instance.setTotalGross(com.commercetools.history.models.common.Money.deepCopy(template.getTotalGross())); return instance; } /** * builder factory method for TaxedPrice * @return builder */ public static TaxedPriceBuilder builder() { return TaxedPriceBuilder.of(); } /** * create builder for TaxedPrice instance * @param template instance with prefilled values for the builder * @return builder */ public static TaxedPriceBuilder builder(final TaxedPrice template) { return TaxedPriceBuilder.of(template); } /** * accessor map function * @param mapped type * @param helper function to map the object * @return mapped value */ default T withTaxedPrice(Function helper) { return helper.apply(this); } /** * gives a TypeReference for usage with Jackson DataBind * @return TypeReference */ public static com.fasterxml.jackson.core.type.TypeReference typeReference() { return new com.fasterxml.jackson.core.type.TypeReference() { @Override public String toString() { return "TypeReference"; } }; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy