pub struct SongBookmark {
pub bookmark_token: String,
pub music_token: String,
pub song_name: String,
pub artist_name: String,
pub album_name: String,
pub art_url: String,
pub sample_url: String,
pub sample_gain: String,
pub date_created: Timestamp,
}
Expand description
“songs”: [ { “sampleUrl”: “http://www.pandora.com/favorites/getSample.jsp?token=32458973245b90287345d0234fc34f8b&allowExplicit=true”, “sampleGain”: “-7.87”, “albumName”: “Symphony In G Major”, “artistName”: “Cannabich, Christian”, “musicToken”: “S2894329”, “dateCreated”: { “nanos”: 300000000, “seconds”: 22, “year”: 112, “month”: 4, “hours”: 11, “time”: 1350566223422, “date”: 23, “minutes”: 01, “day”: 2, “timezoneOffset”: 720 }, “artUrl”: “http://cont-sv5-2.pandora.com/images/public/amz/5/2/9/7/095115137925_500W_488H.jpg”, “bookmarkToken”: “290832123432459854”, “songName”: “London Mozart Players, Christian Cannabich: Symphonies” } ]
Fields§
§bookmark_token: String
Unique identifier (token) associated with this bookmark.
music_token: String
Unique identifier (token) for the music item that was bookmarked.
song_name: String
The name of the song bookmarked.
artist_name: String
The name of the artist for the bookmarked song.
album_name: String
The name of the album for the bookmarked song.
art_url: String
Art url for the bookmark.
sample_url: String
Url for a sample of the bookmarked song.
sample_gain: String
Playback gain for the song sample.
date_created: Timestamp
Timestamp for when the bookmark was created.
Trait Implementations§
Source§impl Clone for SongBookmark
impl Clone for SongBookmark
Source§fn clone(&self) -> SongBookmark
fn clone(&self) -> SongBookmark
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more