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

com.commercetools.history.models.common.PaymentInfo Maven / Gradle / Ivy

There is a newer version: 17.15.1
Show newest version

package com.commercetools.history.models.common;

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

import javax.annotation.Nullable;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;

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

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

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

 *     PaymentInfo paymentInfo = PaymentInfo.builder()
 *             .plusPayments(paymentsBuilder -> paymentsBuilder)
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") @JsonDeserialize(as = PaymentInfoImpl.class) public interface PaymentInfo { /** * * @return payments */ @NotNull @Valid @JsonProperty("payments") public List getPayments(); /** * set payments * @param payments values to be set */ @JsonIgnore public void setPayments(final Reference... payments); /** * set payments * @param payments values to be set */ public void setPayments(final List payments); /** * factory method * @return instance of PaymentInfo */ public static PaymentInfo of() { return new PaymentInfoImpl(); } /** * factory method to create a shallow copy PaymentInfo * @param template instance to be copied * @return copy instance */ public static PaymentInfo of(final PaymentInfo template) { PaymentInfoImpl instance = new PaymentInfoImpl(); instance.setPayments(template.getPayments()); return instance; } /** * factory method to create a deep copy of PaymentInfo * @param template instance to be copied * @return copy instance */ @Nullable public static PaymentInfo deepCopy(@Nullable final PaymentInfo template) { if (template == null) { return null; } PaymentInfoImpl instance = new PaymentInfoImpl(); instance.setPayments(Optional.ofNullable(template.getPayments()) .map(t -> t.stream() .map(com.commercetools.history.models.common.Reference::deepCopy) .collect(Collectors.toList())) .orElse(null)); return instance; } /** * builder factory method for PaymentInfo * @return builder */ public static PaymentInfoBuilder builder() { return PaymentInfoBuilder.of(); } /** * create builder for PaymentInfo instance * @param template instance with prefilled values for the builder * @return builder */ public static PaymentInfoBuilder builder(final PaymentInfo template) { return PaymentInfoBuilder.of(template); } /** * accessor map function * @param mapped type * @param helper function to map the object * @return mapped value */ default T withPaymentInfo(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 - 2024 Weber Informatics LLC | Privacy Policy