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

com.checkmarx.sdk.dto.od.OdScanQueryItem Maven / Gradle / Ivy

There is a newer version: 0.1.33
Show newest version
package com.checkmarx.sdk.dto.od;

import com.fasterxml.jackson.annotation.*;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
        "id"
})
public class OdScanQueryItem {
    @JsonProperty("id")
    private Integer id;

    @JsonProperty("language")
    private String language;

    @JsonProperty("severity")
    private List severity;

    @JsonProperty("categories")
    private List categories;

    @JsonIgnore
    private Map additionalProperties = new HashMap();

    @JsonProperty("id")
    public Integer getId() {
        return id;
    }

    @JsonProperty("id")
    public void setId(Integer id) {
          this.id = id;
    }

    @JsonProperty("language")
    public String getLanguage() {
        return language;
    }

    @JsonProperty("language")
    public void setLanguage(String language) {
        this.language = language;
    }

    @JsonProperty("severity")
    public List getSeverity() {
        return severity;
    }

    @JsonProperty("severity")
    public void setSeverity(List severity) {
        this.severity = severity;
    }

    @JsonProperty("categories")
    public List getCategories() {
        return categories;
    }

    @JsonProperty("categories")
    public void setCategories(List categories) {
        this.categories = categories;
    }

    @JsonAnyGetter
    public Map getAdditionalProperties() {
        return this.additionalProperties;
    }

    @JsonAnySetter
    public void setAdditionalProperty(String name, Object value) {
        this.additionalProperties.put(name, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy