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

com.rocketlabs.sellercenterapi.core.Response Maven / Gradle / Ivy

package com.rocketlabs.sellercenterapi.core;

import javax.json.JsonObject;

public interface Response {

    /**
     * Simple getter for request action
     *
     * @return the request action
     */
    String getRequestAction();

    /**
     * Get the body of the response, in a JSON like representation,
     * including List and primitive value Object.
     *
     * @return A map representing the content of the body
     */
    JsonObject getBody();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy