com.commercetools.history.models.change_value.ChangeValueRelativeChangeValue 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.constraints.NotNull;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.databind.annotation.*;
import io.vrap.rmf.base.client.utils.Generated;
/**
* ChangeValueRelativeChangeValue
*
*
* Example to create an instance using the builder pattern
*
*
* ChangeValueRelativeChangeValue changeValueRelativeChangeValue = ChangeValueRelativeChangeValue.builder()
* .permyriad(1)
* .build()
*
*
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = ChangeValueRelativeChangeValueImpl.class)
public interface ChangeValueRelativeChangeValue extends ChangeValueChangeValue {
/**
* discriminator value for ChangeValueRelativeChangeValue
*/
String RELATIVE = "relative";
/**
*
* @return type
*/
@NotNull
@JsonProperty("type")
public String getType();
/**
* Fraction (per ten thousand) the price is reduced by. For example, 1000 results in a 10% price reduction.
* @return permyriad
*/
@NotNull
@JsonProperty("permyriad")
public Integer getPermyriad();
/**
* Fraction (per ten thousand) the price is reduced by. For example, 1000 results in a 10% price reduction.
* @param permyriad value to be set
*/
public void setPermyriad(final Integer permyriad);
/**
* factory method
* @return instance of ChangeValueRelativeChangeValue
*/
public static ChangeValueRelativeChangeValue of() {
return new ChangeValueRelativeChangeValueImpl();
}
/**
* factory method to create a shallow copy ChangeValueRelativeChangeValue
* @param template instance to be copied
* @return copy instance
*/
public static ChangeValueRelativeChangeValue of(final ChangeValueRelativeChangeValue template) {
ChangeValueRelativeChangeValueImpl instance = new ChangeValueRelativeChangeValueImpl();
instance.setPermyriad(template.getPermyriad());
return instance;
}
/**
* factory method to create a deep copy of ChangeValueRelativeChangeValue
* @param template instance to be copied
* @return copy instance
*/
@Nullable
public static ChangeValueRelativeChangeValue deepCopy(@Nullable final ChangeValueRelativeChangeValue template) {
if (template == null) {
return null;
}
ChangeValueRelativeChangeValueImpl instance = new ChangeValueRelativeChangeValueImpl();
instance.setPermyriad(template.getPermyriad());
return instance;
}
/**
* builder factory method for ChangeValueRelativeChangeValue
* @return builder
*/
public static ChangeValueRelativeChangeValueBuilder builder() {
return ChangeValueRelativeChangeValueBuilder.of();
}
/**
* create builder for ChangeValueRelativeChangeValue instance
* @param template instance with prefilled values for the builder
* @return builder
*/
public static ChangeValueRelativeChangeValueBuilder builder(final ChangeValueRelativeChangeValue template) {
return ChangeValueRelativeChangeValueBuilder.of(template);
}
/**
* accessor map function
* @param mapped type
* @param helper function to map the object
* @return mapped value
*/
default T withChangeValueRelativeChangeValue(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";
}
};
}
}