com.logicommerce.sdk.definition.PropertyDefinitionValue 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.definition;
/**
* PropertyDefinitionValue interface.
*
* @author Logicommerce
* @since 1.0.16
*/
public interface PropertyDefinitionValue {
/**
* getValue.
*
* @return a {@link java.lang.String} object
*/
String getValue();
/**
* getLanguages.
*
* @return a {@link com.logicommerce.sdk.definition.DefinitionLanguages} object
*/
DefinitionLanguages getLanguages();
}