com.logicommerce.sdk.models.order.OrderBaseStatus 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.order;
import java.time.LocalDateTime;
import java.util.List;
/**
* OrderBaseStatus interface.
*
* @author Logicommerce
* @since 1.0.16
*/
public interface OrderBaseStatus {
/**
* getId.
*
* @return a {@link java.lang.Integer} object
*/
Integer getId();
/**
* getActions.
*
* @return a {@link java.util.List} object
*/
List getActions();
/**
* getCurrentDateTime.
*
* @return a {@link java.time.LocalDateTime} object
*/
LocalDateTime getCurrentDateTime();
/**
* getStatus.
*
* @return a T object
*/
T getStatus();
/**
* getSubstatusId.
*
* @return a int
*/
int getSubstatusId();
}