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

org.aarboard.nextcloud.api.utils.NextcloudResponse Maven / Gradle / Ivy

The newest version!
package org.aarboard.nextcloud.api.utils;

public interface NextcloudResponse {

    /**
     * @return the status
     */
    String getStatus();

    /**
     * @return the statusCode
     */
    int getStatusCode();

    /**
     * @return the message
     */
    String getMessage();

    /**
     * @return the totalItems
     */
    int getTotalItems();

    /**
     * @return the itemsPerPage
     */
    int getItemsPerPage();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy