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

com.checkmarx.sdk.dto.od.OdApplicationListData 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({
        "items",
        "totalCount"
})
public class OdApplicationListData {
    @JsonProperty("items")
    private List items = null;
    @JsonProperty("totalCount")
    private Long totalCount;
    @JsonIgnore
    private Map additionalProperties = new HashMap();

    @JsonProperty("items")
    public List getItems() {
        return items;
    }

    @JsonProperty("items")
    public void setItems(List items) {
        this.items = items;
    }

    @JsonProperty("totalCount")
    public Long getTotalCount() {
        return totalCount;
    }

    @JsonProperty("totalCount")
    public void setTotalCount(Long items) {
        this.totalCount = totalCount;
    }

    @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