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

com.lajospolya.spotifyapiwrapper.response.ResumePoint Maven / Gradle / Ivy

Go to download

This project wraps the Spotify public API in order to allow users to intuitively use it

There is a newer version: 3.0.RELEASE
Show newest version
package com.lajospolya.spotifyapiwrapper.response;

/**
 * @author Lajos Polya
 * Represent the Resume Point object as described at
 * https://developer.spotify.com/documentation/web-api/reference-beta/
 */
public class ResumePoint
{
    private Boolean fully_played;
    private Integer last_position_ms;

    public Boolean getFully_played()
    {
        return fully_played;
    }

    public void setFully_played(Boolean fully_played)
    {
        this.fully_played = fully_played;
    }

    public Integer getLast_position_ms()
    {
        return last_position_ms;
    }

    public void setLast_position_ms(Integer last_position_ms)
    {
        this.last_position_ms = last_position_ms;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy