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

com.release_notes_for_bitbucket.model.Changesets Maven / Gradle / Ivy

Go to download

This tool collects all issues that were fixed in some/the latest release and assigns them a corresponding milestone. In effect this milestone is basis for your release notes. This is the command line tool - a maven plugin is available too.

The newest version!

package com.release_notes_for_bitbucket.model;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Generated;

@Generated("org.jsonschema2pojo")
public class Changesets {

    private Long count;
    private Object start;
    private Long limit;
    private List changesets = new ArrayList();
    private Map additionalProperties = new HashMap();

    /**
     * 
     * @return
     *     The count
     */
    public Long getCount() {
        return count;
    }

    /**
     * 
     * @param count
     *     The count
     */
    public void setCount(Long count) {
        this.count = count;
    }

    /**
     * 
     * @return
     *     The start
     */
    public Object getStart() {
        return start;
    }

    /**
     * 
     * @param start
     *     The start
     */
    public void setStart(Object start) {
        this.start = start;
    }

    /**
     * 
     * @return
     *     The limit
     */
    public Long getLimit() {
        return limit;
    }

    /**
     * 
     * @param limit
     *     The limit
     */
    public void setLimit(Long limit) {
        this.limit = limit;
    }

    /**
     * 
     * @return
     *     The changesets
     */
    public List getChangesets() {
        return changesets;
    }

    /**
     * 
     * @param changesets
     *     The changesets
     */
    public void setChangesets(List changesets) {
        this.changesets = changesets;
    }

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy