Class SimulateTraceConfig
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.SimulateTraceConfig
-
public class SimulateTraceConfig extends PathResponse
An object that configures simulation execution trace.
-
-
Field Summary
Fields Modifier and Type Field Description Boolean
enable
A boolean option for opting in execution trace features simulation endpoint.Boolean
scratchChange
A boolean option enabling returning scratch slot changes together with execution trace during simulation.Boolean
stackChange
A boolean option enabling returning stack changes together with execution trace during simulation.Boolean
stateChange
A boolean option enabling returning application state changes (global, local, and box changes) with the execution trace during simulation.
-
Constructor Summary
Constructors Constructor Description SimulateTraceConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
enable
public Boolean enable
A boolean option for opting in execution trace features simulation endpoint.
-
scratchChange
public Boolean scratchChange
A boolean option enabling returning scratch slot changes together with execution trace during simulation.
-
stackChange
public Boolean stackChange
A boolean option enabling returning stack changes together with execution trace during simulation.
-
stateChange
public Boolean stateChange
A boolean option enabling returning application state changes (global, local, and box changes) with the execution trace during simulation.
-
-