de.sonallux.spotify.api.models.SavedAudiobook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java wrapper for Spotify's Web API
The newest version!
package de.sonallux.spotify.api.models;
import lombok.*;
/**
* SavedAudiobookObject
*/
@Getter
@Setter
@NoArgsConstructor
public class SavedAudiobook {
/**
* The date and time the audiobook was saved
* Timestamps are returned in ISO 8601 format as Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ.
* If the time is imprecise (for example, the date/time of an album release), an additional field indicates the precision; see for example, release_date in an album object.
*/
public java.time.Instant addedAt;
/**
* Information about the audiobook.
*/
public Audiobook audiobook;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy