Gush\Adapter\Adapter::getReleaseAssets PHP Method

getReleaseAssets() public method

Returned value must be an array with the following data per entry (values are by example). If a value is not supported null must be used instead. Note. Size is in bytes, url contains a link to the asset. but may not necessarily download the actual asset. State can be: "uploaded", "empty", or "uploading". "url": "https://api.github.com/repos/octocat/Hello-World/releases/assets/1" "id": 1 "name": "example.zip" "label": "short description" "state": "uploaded" "content_type": "application/zip" "size": 1024 "created_at": "DateTime Object" "updated_at": "DateTime Object" "uploader": "username"
public getReleaseAssets ( integer $id ) : array[]
$id integer Id of the release (must exist)
return array[] [['id' => 1, ...]]
    public function getReleaseAssets($id);