TableTransactionActionResponse Class

  • java.lang.Object
    • com.azure.data.tables.models.TableTransactionActionResponse

Implements

public final class TableTransactionActionResponse
implements Response<Object>

The response of a REST sub-request contained within the response of a transaction request.

Method Summary

Modifier and Type Method and Description
HttpHeaders getHeaders()

Gets the headers from the HTTP sub-response.

HttpRequest getRequest()

Gets the sub-request which resulted in this TableTransactionActionResponse.

int getStatusCode()

Gets the HTTP sub-response status code.

Object getValue()

Gets the deserialized value of the HTTP sub-response, if present.

Methods inherited from java.lang.Object

Method Details

getHeaders

public HttpHeaders getHeaders()

Gets the headers from the HTTP sub-response.

Returns:

The HTTP sub-response headers.

getRequest

public HttpRequest getRequest()

Gets the sub-request which resulted in this TableTransactionActionResponse.

Returns:

The sub-request which resulted in this TableTransactionActionResponse.

getStatusCode

public int getStatusCode()

Gets the HTTP sub-response status code.

Returns:

The status code of the HTTP sub-response.

getValue

public Object getValue()

Gets the deserialized value of the HTTP sub-response, if present.

Returns:

The deserialized value of the HTTP sub-response, if present.

Applies to