Android - Tags for trips
/**
* Returns track tags.
*
* @param trackId Track id.
* @throws IllegalStateException if [initialize] never called. See also [isInitialized].
*/
fun getTrackTags(trackId: String): Array<TrackTag>
/**
* Add track tags. Return tags successfully added (with tag and type only, without source).
*
* @param trackId Track id.
* @throws IllegalStateException if [initialize] never called. See also [isInitialized].
*/
fun addTrackTags(trackId: String, tags: Array<TrackTag>): Array<TrackTag>
/**
* Remove track tags. Return tags successfully removed (with tag and type only, without source).
*
* @param trackId Track id.
* @throws IllegalStateException if [initialize] never called. See also [isInitialized].
*/
fun removeTrackTags(trackId: String, tags: Array<TrackTag>): Array<TrackTag>Last updated
Was this helpful?