All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.datatransferproject.transfer.deezer.model.Album Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package org.datatransferproject.transfer.deezer.model;

/**
 * POJO of: https://developers.deezer.com/api/album
 */
public class Album {
  private long id;
  private String title;
  private String upc;
  private String link;

  public long getId() {
    return id;
  }

  public String getTitle() {
    return title;
  }

  public String getUpc() {
    return upc;
  }

  public String getLink() {
    return link;
  }

  @Override
  public String toString() {
    return String.format("Album{id=%s, title=%s}", id, title);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy