Package com.azure.data.tables.models
Class TableTransactionActionResponse
java.lang.Object
com.azure.data.tables.models.TableTransactionActionResponse
- All Implemented Interfaces:
com.azure.core.http.rest.Response<Object>
public final class TableTransactionActionResponse
extends Object
implements com.azure.core.http.rest.Response<Object>
The response of a REST sub-request contained within the response of a transaction request.
-
Method Summary
Modifier and TypeMethodDescriptioncom.azure.core.http.HttpHeaders
Gets the headers from the HTTP sub-response.com.azure.core.http.HttpRequest
Gets the sub-request which resulted in thisTableTransactionActionResponse
.int
Gets the HTTP sub-response status code.getValue()
Gets the deserialized value of the HTTP sub-response, if present.
-
Method Details
-
getRequest
public com.azure.core.http.HttpRequest getRequest()Gets the sub-request which resulted in thisTableTransactionActionResponse
.- Specified by:
getRequest
in interfacecom.azure.core.http.rest.Response<Object>
- Returns:
- The sub-request which resulted in this
TableTransactionActionResponse
.
-
getStatusCode
public int getStatusCode()Gets the HTTP sub-response status code.- Specified by:
getStatusCode
in interfacecom.azure.core.http.rest.Response<Object>
- Returns:
- The status code of the HTTP sub-response.
-
getHeaders
public com.azure.core.http.HttpHeaders getHeaders()Gets the headers from the HTTP sub-response.- Specified by:
getHeaders
in interfacecom.azure.core.http.rest.Response<Object>
- Returns:
- The HTTP sub-response headers.
-
getValue
Gets the deserialized value of the HTTP sub-response, if present.- Specified by:
getValue
in interfacecom.azure.core.http.rest.Response<Object>
- Returns:
- The deserialized value of the HTTP sub-response, if present.
-