All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.commercetools.importapi.models.common.CustomerGroupKeyReference Maven / Gradle / Ivy

There is a newer version: 17.22.0
Show newest version

package com.commercetools.importapi.models.common;

import java.time.*;
import java.util.*;
import java.util.function.Function;

import javax.annotation.Nullable;

import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.databind.annotation.*;

import io.vrap.rmf.base.client.utils.Generated;

/**
 *  

References a customer group by key.

* *
* Example to create an instance using the builder pattern *
*

 *     CustomerGroupKeyReference customerGroupKeyReference = CustomerGroupKeyReference.builder()
 *             .key("{key}")
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") @JsonDeserialize(as = CustomerGroupKeyReferenceImpl.class) public interface CustomerGroupKeyReference extends KeyReference { /** * discriminator value for CustomerGroupKeyReference */ String CUSTOMER_GROUP = "customer-group"; /** * factory method * @return instance of CustomerGroupKeyReference */ public static CustomerGroupKeyReference of() { return new CustomerGroupKeyReferenceImpl(); } /** * factory method to create a shallow copy CustomerGroupKeyReference * @param template instance to be copied * @return copy instance */ public static CustomerGroupKeyReference of(final CustomerGroupKeyReference template) { CustomerGroupKeyReferenceImpl instance = new CustomerGroupKeyReferenceImpl(); instance.setKey(template.getKey()); return instance; } /** * factory method to create a deep copy of CustomerGroupKeyReference * @param template instance to be copied * @return copy instance */ @Nullable public static CustomerGroupKeyReference deepCopy(@Nullable final CustomerGroupKeyReference template) { if (template == null) { return null; } CustomerGroupKeyReferenceImpl instance = new CustomerGroupKeyReferenceImpl(); instance.setKey(template.getKey()); return instance; } /** * builder factory method for CustomerGroupKeyReference * @return builder */ public static CustomerGroupKeyReferenceBuilder builder() { return CustomerGroupKeyReferenceBuilder.of(); } /** * create builder for CustomerGroupKeyReference instance * @param template instance with prefilled values for the builder * @return builder */ public static CustomerGroupKeyReferenceBuilder builder(final CustomerGroupKeyReference template) { return CustomerGroupKeyReferenceBuilder.of(template); } /** * accessor map function * @param mapped type * @param helper function to map the object * @return mapped value */ default T withCustomerGroupKeyReference(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"; } }; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy