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

com.arextest.schedule.model.plan.QueryReplaySenderParametersRequest Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.arextest.schedule.model.plan;

import java.util.List;
import javax.validation.constraints.Max;
import javax.validation.constraints.Size;
import lombok.Data;

/**
 * @author wildeslam.
 * @create 2023/11/22 16:56
 */
@Data
public class QueryReplaySenderParametersRequest {
  private String planId;
  /**
   * @see BuildReplayPlanType
   */
  private int replayPlanType;
  @Size(max = 100, min = 1)
  private List caseIds;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy