Expand description

Organization interface representing a GitHub organization.

remarks

Contains the organization login and connection to its teams.

interface Organization {
    login: string;
    teams: TeamConnection;
}

Properties§

§login: string

The login name of the organization

§teams: TeamConnection

The connection containing all teams in this organization