001 002package com.commercetools.history.models.change_value; 003 004import java.time.*; 005import java.util.*; 006import java.util.function.Function; 007 008import javax.annotation.Nullable; 009import javax.validation.constraints.NotNull; 010 011import com.fasterxml.jackson.annotation.*; 012import com.fasterxml.jackson.databind.annotation.*; 013 014import io.vrap.rmf.base.client.utils.Generated; 015 016/** 017 * ChangeValueRelativeChangeValue 018 * 019 * <hr> 020 * Example to create an instance using the builder pattern 021 * <div class=code-example> 022 * <pre><code class='java'> 023 * ChangeValueRelativeChangeValue changeValueRelativeChangeValue = ChangeValueRelativeChangeValue.builder() 024 * .permyriad(1) 025 * .build() 026 * </code></pre> 027 * </div> 028 */ 029@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") 030@JsonDeserialize(as = ChangeValueRelativeChangeValueImpl.class) 031public interface ChangeValueRelativeChangeValue extends ChangeValueChangeValue { 032 033 /** 034 * discriminator value for ChangeValueRelativeChangeValue 035 */ 036 String RELATIVE = "relative"; 037 038 /** 039 * 040 * @return type 041 */ 042 @NotNull 043 @JsonProperty("type") 044 public String getType(); 045 046 /** 047 * <p>Fraction (per ten thousand) the price is reduced by. For example, 1000 results in a 10% price reduction.</p> 048 * @return permyriad 049 */ 050 @NotNull 051 @JsonProperty("permyriad") 052 public Integer getPermyriad(); 053 054 /** 055 * <p>Fraction (per ten thousand) the price is reduced by. For example, 1000 results in a 10% price reduction.</p> 056 * @param permyriad value to be set 057 */ 058 059 public void setPermyriad(final Integer permyriad); 060 061 /** 062 * factory method 063 * @return instance of ChangeValueRelativeChangeValue 064 */ 065 public static ChangeValueRelativeChangeValue of() { 066 return new ChangeValueRelativeChangeValueImpl(); 067 } 068 069 /** 070 * factory method to create a shallow copy ChangeValueRelativeChangeValue 071 * @param template instance to be copied 072 * @return copy instance 073 */ 074 public static ChangeValueRelativeChangeValue of(final ChangeValueRelativeChangeValue template) { 075 ChangeValueRelativeChangeValueImpl instance = new ChangeValueRelativeChangeValueImpl(); 076 instance.setPermyriad(template.getPermyriad()); 077 return instance; 078 } 079 080 /** 081 * factory method to create a deep copy of ChangeValueRelativeChangeValue 082 * @param template instance to be copied 083 * @return copy instance 084 */ 085 @Nullable 086 public static ChangeValueRelativeChangeValue deepCopy(@Nullable final ChangeValueRelativeChangeValue template) { 087 if (template == null) { 088 return null; 089 } 090 ChangeValueRelativeChangeValueImpl instance = new ChangeValueRelativeChangeValueImpl(); 091 instance.setPermyriad(template.getPermyriad()); 092 return instance; 093 } 094 095 /** 096 * builder factory method for ChangeValueRelativeChangeValue 097 * @return builder 098 */ 099 public static ChangeValueRelativeChangeValueBuilder builder() { 100 return ChangeValueRelativeChangeValueBuilder.of(); 101 } 102 103 /** 104 * create builder for ChangeValueRelativeChangeValue instance 105 * @param template instance with prefilled values for the builder 106 * @return builder 107 */ 108 public static ChangeValueRelativeChangeValueBuilder builder(final ChangeValueRelativeChangeValue template) { 109 return ChangeValueRelativeChangeValueBuilder.of(template); 110 } 111 112 /** 113 * accessor map function 114 * @param <T> mapped type 115 * @param helper function to map the object 116 * @return mapped value 117 */ 118 default <T> T withChangeValueRelativeChangeValue(Function<ChangeValueRelativeChangeValue, T> helper) { 119 return helper.apply(this); 120 } 121 122 /** 123 * gives a TypeReference for usage with Jackson DataBind 124 * @return TypeReference 125 */ 126 public static com.fasterxml.jackson.core.type.TypeReference<ChangeValueRelativeChangeValue> typeReference() { 127 return new com.fasterxml.jackson.core.type.TypeReference<ChangeValueRelativeChangeValue>() { 128 @Override 129 public String toString() { 130 return "TypeReference<ChangeValueRelativeChangeValue>"; 131 } 132 }; 133 } 134}