com.commercetools.importapi.models.orders.TaxedPrice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commercetools-sdk-java-importapi Show documentation
Show all versions of commercetools-sdk-java-importapi Show documentation
The e-commerce SDK from commercetools Composable Commerce for Java
package com.commercetools.importapi.models.orders;
import java.time.*;
import java.util.*;
import java.util.function.Function;
import java.util.stream.Collectors;
import javax.annotation.Nullable;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import com.commercetools.importapi.models.common.Money;
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)
* .plusTaxPortions(taxPortionsBuilder -> taxPortionsBuilder)
* .build()
*
*
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = TaxedPriceImpl.class)
public interface TaxedPrice {
/**
* Maps to TaxedPrice.totalNet
.
* @return totalNet
*/
@NotNull
@Valid
@JsonProperty("totalNet")
public Money getTotalNet();
/**
* Maps to TaxedPrice.totalGross
.
* @return totalGross
*/
@NotNull
@Valid
@JsonProperty("totalGross")
public Money getTotalGross();
/**
* Maps to TaxedPrice.taxPortions
.
* @return taxPortions
*/
@NotNull
@Valid
@JsonProperty("taxPortions")
public List getTaxPortions();
/**
* Maps to TaxedPrice.totalNet
.
* @param totalNet value to be set
*/
public void setTotalNet(final Money totalNet);
/**
* Maps to TaxedPrice.totalGross
.
* @param totalGross value to be set
*/
public void setTotalGross(final Money totalGross);
/**
* Maps to TaxedPrice.taxPortions
.
* @param taxPortions values to be set
*/
@JsonIgnore
public void setTaxPortions(final TaxPortion... taxPortions);
/**
* Maps to TaxedPrice.taxPortions
.
* @param taxPortions values to be set
*/
public void setTaxPortions(final List taxPortions);
/**
* 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());
instance.setTaxPortions(template.getTaxPortions());
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.importapi.models.common.Money.deepCopy(template.getTotalNet()));
instance.setTotalGross(com.commercetools.importapi.models.common.Money.deepCopy(template.getTotalGross()));
instance.setTaxPortions(Optional.ofNullable(template.getTaxPortions())
.map(t -> t.stream()
.map(com.commercetools.importapi.models.orders.TaxPortion::deepCopy)
.collect(Collectors.toList()))
.orElse(null));
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";
}
};
}
}