com.sap.cloud.sdk.odatav2.connectivity.batch.BatchResult Maven / Gradle / Ivy
package com.sap.cloud.sdk.odatav2.connectivity.batch;
import java.util.List;
/*
* Represents the responses for each request in the batch.
*/
public interface BatchResult {
/**
* Gets the list of responses corresponding to each request in the batch.
* @return Responses to each request in the batch
*/
public List get();
}