com.cx.restclient.ast.dto.common.StartScanRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-client-common Show documentation
Show all versions of cx-client-common Show documentation
Web client for interaction with Checkmarx SAST, SCA and OSA products
package com.cx.restclient.ast.dto.common;
import lombok.Builder;
import lombok.Getter;
import java.util.List;
@Builder
@Getter
public class StartScanRequest {
/**
* What to scan.
*/
private ProjectToScan project;
/**
* How to scan.
*/
private List config;
}