![JAR search and dependency download from the Maven repository](/logo.png)
com.logicommerce.sdk.models.WidgetResponse 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;
import com.logicommerce.sdk.enums.WidgetAmbience;
import com.logicommerce.sdk.enums.WidgetPageType;
import com.logicommerce.sdk.enums.WidgetPosition;
/**
* Interface for a widgets attributes.
*
* @author Logicommerce
* @since %I%, %G%
* @since 1.0.16
* @see WidgetPageType
* @see WidgetAmbience
* @see WidgetPosition
*/
public interface WidgetResponse {
/**
* Return {@link com.logicommerce.sdk.enums.WidgetPageType} param value.
*
* @return WidgetPageType
* @see WidgetPageType
* @since 1.0.16
*/
WidgetPageType getPageType();
/**
* Return {@link com.logicommerce.sdk.enums.WidgetAmbience} param value.
*
* @return WidgetAmbience
* @see WidgetAmbience
* @since 1.0.16
*/
WidgetAmbience getAmbience();
/**
* Return {@link com.logicommerce.sdk.enums.WidgetPosition} param value.
*
* @return WidgetPosition
* @see WidgetPosition
* @since 1.0.16
*/
WidgetPosition getPosition();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy