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

de.sonallux.spotify.api.models.CursorPaging Maven / Gradle / Ivy

The newest version!
package de.sonallux.spotify.api.models;

import lombok.*;

/**
 * CursorPagingObject
 */
@Getter
@Setter
@NoArgsConstructor
public class CursorPaging {
    /**
     * 

The requested data.

*/ public java.util.List items; /** *

The cursors used to find the next set of items.

*/ public Cursor cursors; /** *

A link to the Web API endpoint returning the full result of the request.

*/ public String href; /** *

The maximum number of items in the response (as set in the query or by default).

*/ public int limit; /** *

URL to the next page of items. ( null if none)

*/ public String next; /** *

The total number of items available to return.

*/ public int total; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy