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

com.cx.restclient.sast.dto.ProjectPutRequest Maven / Gradle / Ivy

The newest version!
package com.cx.restclient.sast.dto;

import java.util.ArrayList;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * Created by Galn on 13/02/2018.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class ProjectPutRequest {

    private String name;
    private Integer owningTeam;
    private List customFields;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getOwningTeam() {
        return owningTeam;
    }

    public void setOwningTeam(Integer owningTeam) {
        this.owningTeam = owningTeam;
    }

    public List getCustomFields() {
        return customFields;
    }

    public void setCustomFields(ArrayList custObj) {
        this.customFields = custObj;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy