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

org.kohsuke.github.GHIssueRename Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha-2
Show newest version
package org.kohsuke.github;

// TODO: Auto-generated Javadoc
/**
 * The type GHIssueRename.
 *
 * @author Andrii Tomchuk
 * @see Github
 *      documentation for renamed event
 */
public class GHIssueRename {
    private String from = "";
    private String to = "";

    /**
     * Old issue name.
     *
     * @return old issue name
     */
    public String getFrom() {
        return this.from;
    }

    /**
     * New issue name.
     *
     * @return new issue name
     */
    public String getTo() {
        return this.to;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy