operation method

Future<OperationResponse> operation(
  1. int operationId
)

Provides information about a specific operation given by operationId. See: Operation Details

Implementation

Future<OperationResponse> operation(int operationId) {
  this.setSegments(["operations", operationId.toString()]);
  return this.operationURI(this.buildUri());
}