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