forClaimableBalance method

OperationsRequestBuilder forClaimableBalance (
  1. String claimableBalanceId
)

Returns successful operations for a given claimable balance by claimableBalanceId. See: Operations for claimable balance

Implementation

OperationsRequestBuilder forClaimableBalance(String claimableBalanceId) {
  claimableBalanceId =
      checkNotNull(claimableBalanceId, "claimableBalanceId cannot be null");
  this.setSegments(["claimable_balances", claimableBalanceId, "operations"]);
  return this;
}