> ## Documentation Index
> Fetch the complete documentation index at: https://thrackle.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Arguments

[Git Source](https://github.com/forte-service-company-ltd/forte-rules-engine/blob/1f7450a94147e76e3930c235a18534779130abee/src/engine/RulesEngineStorageStructure.sol)

Structure used to hold the decoded arguments.
Used to hold both the decoded arguments for a calling function in order,
and the arguments for a rules placeholders in order.

```solidity
struct Arguments {
    ParamTypes[] argumentTypes;
    bytes[] values;
}
```
