com.commercetools.history.models.label.AssociateRoleLabel 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.label;
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;
/**
* AssociateRoleLabel
*
*
* Example to create an instance using the builder pattern
*
*
* AssociateRoleLabel associateRoleLabel = AssociateRoleLabel.builder()
* .key("{key}")
* .name("{name}")
* .build()
*
*
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AssociateRoleLabelImpl.class)
public interface AssociateRoleLabel extends Label {
/**
* discriminator value for AssociateRoleLabel
*/
String ASSOCIATE_ROLE_LABEL = "AssociateRoleLabel";
/**
*
* @return type
*/
@NotNull
@JsonProperty("type")
public String getType();
/**
* User-defined unique identifier of the Associate Role.
* @return key
*/
@NotNull
@JsonProperty("key")
public String getKey();
/**
* Name of the Associate Role.
* @return name
*/
@NotNull
@JsonProperty("name")
public String getName();
/**
* User-defined unique identifier of the Associate Role.
* @param key value to be set
*/
public void setKey(final String key);
/**
* Name of the Associate Role.
* @param name value to be set
*/
public void setName(final String name);
/**
* factory method
* @return instance of AssociateRoleLabel
*/
public static AssociateRoleLabel of() {
return new AssociateRoleLabelImpl();
}
/**
* factory method to create a shallow copy AssociateRoleLabel
* @param template instance to be copied
* @return copy instance
*/
public static AssociateRoleLabel of(final AssociateRoleLabel template) {
AssociateRoleLabelImpl instance = new AssociateRoleLabelImpl();
instance.setKey(template.getKey());
instance.setName(template.getName());
return instance;
}
/**
* factory method to create a deep copy of AssociateRoleLabel
* @param template instance to be copied
* @return copy instance
*/
@Nullable
public static AssociateRoleLabel deepCopy(@Nullable final AssociateRoleLabel template) {
if (template == null) {
return null;
}
AssociateRoleLabelImpl instance = new AssociateRoleLabelImpl();
instance.setKey(template.getKey());
instance.setName(template.getName());
return instance;
}
/**
* builder factory method for AssociateRoleLabel
* @return builder
*/
public static AssociateRoleLabelBuilder builder() {
return AssociateRoleLabelBuilder.of();
}
/**
* create builder for AssociateRoleLabel instance
* @param template instance with prefilled values for the builder
* @return builder
*/
public static AssociateRoleLabelBuilder builder(final AssociateRoleLabel template) {
return AssociateRoleLabelBuilder.of(template);
}
/**
* accessor map function
* @param mapped type
* @param helper function to map the object
* @return mapped value
*/
default T withAssociateRoleLabel(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";
}
};
}
}