pub struct AddArtistBookmarkResponse {
pub artist_name: String,
pub date_created: Timestamp,
pub bookmark_token: String,
pub art_url: String,
pub music_token: String,
}Expand description
{
"stat": "ok",
"result": {
"artistName": "Wallis Bird",
"dateCreated": {
"date": 2,
"day": 3,
"hours": 7,
"minutes": 6,
"month": 6,
"seconds": 13,
"time": 1404309973468,
"timezoneOffset": 420,
"year": 114
},
"bookmarkToken": "49854851068341741",
"artUrl": "http://cont-dc6-2.pandora.com/images/public/amg/portrait/pic200/drP900/P998/P99805K1QKS.jpg",
"musicToken": "R278544"
}
}Fields§
§artist_name: StringThe name of the artist being bookmarked.
date_created: TimestampTimestamp for when the bookmark was created.
bookmark_token: StringThe unique id (token) for the newly-created bookmark.
art_url: StringA link to an image of the artist.
music_token: StringThe unique id (token) for the artist. Artist tokens start with ‘R’, composers with ‘C’, songs with ‘S’, and genres with ‘G’.
Trait Implementations§
Source§impl Clone for AddArtistBookmarkResponse
impl Clone for AddArtistBookmarkResponse
Source§fn clone(&self) -> AddArtistBookmarkResponse
fn clone(&self) -> AddArtistBookmarkResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AddArtistBookmarkResponse
impl Debug for AddArtistBookmarkResponse
Source§impl<'de> Deserialize<'de> for AddArtistBookmarkResponse
impl<'de> Deserialize<'de> for AddArtistBookmarkResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AddArtistBookmarkResponse
impl RefUnwindSafe for AddArtistBookmarkResponse
impl Send for AddArtistBookmarkResponse
impl Sync for AddArtistBookmarkResponse
impl Unpin for AddArtistBookmarkResponse
impl UnwindSafe for AddArtistBookmarkResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more