com.checkout.workflows.conditions.request.ProcessingChannelWorkflowConditionRequest 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.conditions.request;
import com.checkout.workflows.conditions.WorkflowConditionType;
import com.google.gson.annotations.SerializedName;
import lombok.Builder;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import java.util.List;
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public final class ProcessingChannelWorkflowConditionRequest extends WorkflowConditionRequest {
@SerializedName("processing_channels")
private List processingChannels;
public ProcessingChannelWorkflowConditionRequest() {
super(WorkflowConditionType.PROCESSING_CHANNEL);
}
@Builder
private ProcessingChannelWorkflowConditionRequest(final List processingChannels) {
super(WorkflowConditionType.PROCESSING_CHANNEL);
this.processingChannels = processingChannels;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy