io.sphere.sdk.carts.PaymentInfo Maven / Gradle / Ivy
package io.sphere.sdk.carts;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import io.sphere.sdk.models.Reference;
import io.sphere.sdk.payments.Payment;
import java.util.List;
public final class PaymentInfo extends Base {
private final List> payments;
@JsonCreator
private PaymentInfo(final List> payments) {
this.payments = payments;
}
public static PaymentInfo of(final List> payments) {
return new PaymentInfo(payments);
}
public List> getPayments() {
return payments;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy