forTransaction method
- String transactionId
Builds request to GET /transactions/
See: Effect for TransactiontransactionId
/effects
Implementation
EffectsRequestBuilder forTransaction(String transactionId) {
transactionId = checkNotNull(transactionId, "transactionId cannot be null");
this.setSegments(["transactions", transactionId, "effects"]);
return this;
}