Add setter for Association::track_id

This commit is contained in:
alphayax 2016-08-07 13:44:49 +02:00
parent 9e23abb41a
commit eb8ff666b2
1 changed files with 7 additions and 0 deletions

View File

@ -105,4 +105,11 @@ class Association extends Service {
return $this->app_token;
}
/**
* @param int $track_id
*/
public function setTrackId( $track_id) {
$this->track_id = $track_id;
}
}