Package com.spotify.github.v3.git
Interface Tag
-
- All Superinterfaces:
ShaLink
- All Known Implementing Classes:
ImmutableTag
@Immutable public interface Tag extends ShaLink
Git tag resource. Only available for annotated tags (no lightweight tags).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringmessage()The tag message.ReferenceObjectobject()The SHA of the git object this is tagging.Stringtag()The tag.Authortagger()An object with information about the individual creating the tag.
-
-
-
Method Detail
-
tag
@Nullable String tag()
The tag.
-
message
@Nullable String message()
The tag message.
-
tagger
@Nullable Author tagger()
An object with information about the individual creating the tag.
-
object
@Nullable ReferenceObject object()
The SHA of the git object this is tagging.
-
-