forTransaction method
- String transactionId
Returns the operations for a given transaction represented by transactionId
.
See: Operations for Transaction
Implementation
OperationsRequestBuilder forTransaction(String transactionId) {
transactionId = checkNotNull(transactionId, "transactionId cannot be null");
this.setSegments(["transactions", transactionId, "operations"]);
return this;
}