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

com.checkout.workflows.actions.request.WorkflowActionRequest Maven / Gradle / Ivy

There is a newer version: 6.4.2
Show newest version
package com.checkout.workflows.actions.request;

import com.checkout.workflows.actions.WorkflowActionType;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
public abstract class WorkflowActionRequest {

    private WorkflowActionType type;

    protected WorkflowActionRequest(final WorkflowActionType type) {
        this.type = type;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy