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

io.sphere.sdk.payments.PaymentMethodInfo Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.payments;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.sphere.sdk.models.LocalizedString;

import javax.annotation.Nullable;

/**
 @see PaymentMethodInfoBuilder
 */
@JsonDeserialize(as = PaymentMethodInfoImpl.class)
public interface PaymentMethodInfo {
    @Nullable
    String getPaymentInterface();

    @Nullable
    String getMethod();

    @Nullable
    LocalizedString getName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy