com.checkout.workflows.actions.request.WorkflowActionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checkout-sdk-java Show documentation
Show all versions of checkout-sdk-java Show documentation
Checkout SDK for Java https://checkout.com
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