Gets an array of releases from JSON data.
+ ( nullable NSArray< GitHubRelease * > * )releasesWithData: ( NSData * )data
error: ( NSError * __autoreleasing * )error;
The initialized instance
The assets contained in the release.
@property( atomic,
readonly,
strong,
nullable ) NSArray< GitHubReleaseAsset * > * assets;
The release notes for the release.
@property( atomic,
readonly,
strong,
nullable ) NSString * body;
The release's creation date.
@property( atomic,
readonly,
strong,
nullable ) NSDate * created;
The web URL for the release.
@property( atomic,
readonly,
strong,
nullable ) NSURL * htmlURL;
The release's publication date.
@property( atomic,
readonly,
strong,
nullable ) NSDate * published;
The name of the release's tag.
@property( atomic,
readonly,
strong,
nullable ) NSString * tagName;
The URL for the source code's TAR archive.
@property( atomic,
readonly,
strong,
nullable ) NSURL * tarballURL;
The release URL.
@property( atomic,
readonly,
strong,
nullable ) NSURL * url;
This URL corresponds to the release API feed URL.
The URL for the source code's ZIP archive.
@property( atomic,
readonly,
strong,
nullable ) NSURL * zipballURL;