com.commercetools.history.models.change_value.ChangeValueGiftLineItemChangeValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commercetools-sdk-java-history Show documentation
Show all versions of commercetools-sdk-java-history Show documentation
The e-commerce SDK from commercetools Composable Commerce for Java
package com.commercetools.history.models.change_value;
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.commercetools.history.models.common.Reference;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.databind.annotation.*;
import io.vrap.rmf.base.client.utils.Generated;
/**
* ChangeValueGiftLineItemChangeValue
*
*
* Example to create an instance using the builder pattern
*
*
* ChangeValueGiftLineItemChangeValue changeValueGiftLineItemChangeValue = ChangeValueGiftLineItemChangeValue.builder()
* .product(productBuilder -> productBuilder)
* .variantId(1)
* .distributionChannel(distributionChannelBuilder -> distributionChannelBuilder)
* .build()
*
*
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = ChangeValueGiftLineItemChangeValueImpl.class)
public interface ChangeValueGiftLineItemChangeValue extends ChangeValueChangeValue {
/**
* discriminator value for ChangeValueGiftLineItemChangeValue
*/
String GIFT_LINE_ITEM = "giftLineItem";
/**
*
* @return type
*/
@NotNull
@JsonProperty("type")
public String getType();
/**
* Reference to a Product.
* @return product
*/
@NotNull
@Valid
@JsonProperty("product")
public Reference getProduct();
/**
* id
of the ProductVariant.
* @return variantId
*/
@NotNull
@JsonProperty("variantId")
public Integer getVariantId();
/**
* Channel with ChannelRoleEnum InventorySupply
.
* @return supplyChannel
*/
@Valid
@JsonProperty("supplyChannel")
public Reference getSupplyChannel();
/**
* Channel with ChannelRoleEnum ProductDistribution
.
* @return distributionChannel
*/
@NotNull
@Valid
@JsonProperty("distributionChannel")
public Reference getDistributionChannel();
/**
* Reference to a Product.
* @param product value to be set
*/
public void setProduct(final Reference product);
/**
* id
of the ProductVariant.
* @param variantId value to be set
*/
public void setVariantId(final Integer variantId);
/**
* Channel with ChannelRoleEnum InventorySupply
.
* @param supplyChannel value to be set
*/
public void setSupplyChannel(final Reference supplyChannel);
/**
* Channel with ChannelRoleEnum ProductDistribution
.
* @param distributionChannel value to be set
*/
public void setDistributionChannel(final Reference distributionChannel);
/**
* factory method
* @return instance of ChangeValueGiftLineItemChangeValue
*/
public static ChangeValueGiftLineItemChangeValue of() {
return new ChangeValueGiftLineItemChangeValueImpl();
}
/**
* factory method to create a shallow copy ChangeValueGiftLineItemChangeValue
* @param template instance to be copied
* @return copy instance
*/
public static ChangeValueGiftLineItemChangeValue of(final ChangeValueGiftLineItemChangeValue template) {
ChangeValueGiftLineItemChangeValueImpl instance = new ChangeValueGiftLineItemChangeValueImpl();
instance.setProduct(template.getProduct());
instance.setVariantId(template.getVariantId());
instance.setSupplyChannel(template.getSupplyChannel());
instance.setDistributionChannel(template.getDistributionChannel());
return instance;
}
/**
* factory method to create a deep copy of ChangeValueGiftLineItemChangeValue
* @param template instance to be copied
* @return copy instance
*/
@Nullable
public static ChangeValueGiftLineItemChangeValue deepCopy(
@Nullable final ChangeValueGiftLineItemChangeValue template) {
if (template == null) {
return null;
}
ChangeValueGiftLineItemChangeValueImpl instance = new ChangeValueGiftLineItemChangeValueImpl();
instance.setProduct(com.commercetools.history.models.common.Reference.deepCopy(template.getProduct()));
instance.setVariantId(template.getVariantId());
instance.setSupplyChannel(
com.commercetools.history.models.common.Reference.deepCopy(template.getSupplyChannel()));
instance.setDistributionChannel(
com.commercetools.history.models.common.Reference.deepCopy(template.getDistributionChannel()));
return instance;
}
/**
* builder factory method for ChangeValueGiftLineItemChangeValue
* @return builder
*/
public static ChangeValueGiftLineItemChangeValueBuilder builder() {
return ChangeValueGiftLineItemChangeValueBuilder.of();
}
/**
* create builder for ChangeValueGiftLineItemChangeValue instance
* @param template instance with prefilled values for the builder
* @return builder
*/
public static ChangeValueGiftLineItemChangeValueBuilder builder(final ChangeValueGiftLineItemChangeValue template) {
return ChangeValueGiftLineItemChangeValueBuilder.of(template);
}
/**
* accessor map function
* @param mapped type
* @param helper function to map the object
* @return mapped value
*/
default T withChangeValueGiftLineItemChangeValue(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";
}
};
}
}