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

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

package org.kohsuke.github;

import com.fasterxml.jackson.annotation.JsonProperty;

public class GHTeamExt extends GHTeam {
    private GHOrganization organization;

    GHTeamExt wrapUp(GHOrganization owner) {
        this.organization = owner;
        this.root = owner.root;
        return this;
    }

    @JsonProperty("parent")
    private GHTeam parent;

    public GHTeam getParent() {
        return parent;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy