com.logicommerce.sdk.models.payment.PaymentSystemProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
SDK for developing Logicommerce plugins.
package com.logicommerce.sdk.models.payment;
import java.util.List;
/**
* PaymentSystemProperties interface.
*
* @author Logicommerce
* @since 1.0.16
*/
public interface PaymentSystemProperties {
/**
* getProperties.
*
* @return a {@link java.util.List} object
*/
List getProperties();
/**
* setProperties.
*
* @param paymentProperties a {@link java.util.List} object
*/
void setProperties(List paymentProperties);
/**
* addProperty.
*
* @param paymentProperty a {@link com.logicommerce.sdk.models.payment.PaymentSystemProperty} object
*/
void addProperty(PaymentSystemProperty paymentProperty);
/**
* clean.
*/
void clean();
}