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

com.logicommerce.sdk.models.order.implementations.OrderStatusActionImpl Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.logicommerce.sdk.models.order.implementations;

import com.logicommerce.sdk.enums.SettingOrderSubstatusActionType;
import com.logicommerce.sdk.models.order.OrderStatusAction;

/**
 * 

OrderStatusActionImpl class.

* * @author Logicommerce * @since 1.0.16 */ public class OrderStatusActionImpl implements OrderStatusAction { private Integer id; private SettingOrderSubstatusActionType actionType; private int actionId; private String parameter1; private String parameter2; private boolean done; private String sentText; /** *

Getter for the field id.

* * @return a {@link java.lang.Integer} object */ public Integer getId() { return id; } /** *

Getter for the field actionType.

* * @return a {@link com.logicommerce.sdk.enums.SettingOrderSubstatusActionType} object */ public SettingOrderSubstatusActionType getActionType() { return actionType; } /** *

Getter for the field actionId.

* * @return a int */ public int getActionId() { return actionId; } /** *

Getter for the field parameter1.

* * @return a {@link java.lang.String} object */ public String getParameter1() { return parameter1; } /** *

Getter for the field parameter2.

* * @return a {@link java.lang.String} object */ public String getParameter2() { return parameter2; } /** *

isDone.

* * @return a boolean */ public boolean isDone() { return done; } /** *

Getter for the field sentText.

* * @return a {@link java.lang.String} object */ public String getSentText() { return sentText; } /** *

Setter for the field id.

* * @param id a {@link java.lang.Integer} object */ public void setId(Integer id) { this.id = id; } /** *

Setter for the field actionType.

* * @param actionType a {@link com.logicommerce.sdk.enums.SettingOrderSubstatusActionType} object */ public void setActionType(SettingOrderSubstatusActionType actionType) { this.actionType = actionType; } /** *

Setter for the field actionId.

* * @param actionId a int */ public void setActionId(int actionId) { this.actionId = actionId; } /** *

Setter for the field parameter1.

* * @param parameter1 a {@link java.lang.String} object */ public void setParameter1(String parameter1) { this.parameter1 = parameter1; } /** *

Setter for the field parameter2.

* * @param parameter2 a {@link java.lang.String} object */ public void setParameter2(String parameter2) { this.parameter2 = parameter2; } /** *

Setter for the field done.

* * @param done a boolean */ public void setDone(boolean done) { this.done = done; } /** *

Setter for the field sentText.

* * @param sentText a {@link java.lang.String} object */ public void setSentText(String sentText) { this.sentText = sentText; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy