Package com.spotify.github.v3.repos
Interface Organization
-
- All Known Implementing Classes:
ImmutableOrganization
@Immutable public interface OrganizationOrganization object for GitHub.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description URIavatarUrl()Avatar URL.URIeventsUrl()Events API URL.Longid()Organization id.Stringlogin()The organization's username.StringmembersUrl()Members API URL template.StringpublicMembersUrl()Public members API URL template.URIreposUrl()Repositories API URL.URIurl()API URL.
-
-
-
Method Detail
-
login
@Nullable String login()
The organization's username.
-
id
@Nullable Long id()
Organization id.
-
url
@Nullable URI url()
API URL.
-
reposUrl
@Nullable URI reposUrl()
Repositories API URL.
-
eventsUrl
@Nullable URI eventsUrl()
Events API URL.
-
membersUrl
@Nullable String membersUrl()
Members API URL template.
-
publicMembersUrl
@Nullable String publicMembersUrl()
Public members API URL template.
-
avatarUrl
@Nullable URI avatarUrl()
Avatar URL.
-
-