# ReceivableStorage

[Git Source](https://github.com/isle-labs/isle-contract/blob/main/contracts/ReceivableStorage.sol)

## State Variables

### isleGlobal

```solidity
address public isleGlobal;
```

### \_tokenIdCounter

```solidity
uint256 internal _tokenIdCounter;
```

### idToReceivableInfo

```solidity
mapping(uint256 => Receivable.Info) public idToReceivableInfo;
```

### \_\_gap

*This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See <https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage\\_gaps>*

```solidity
uint256[100] private __gap;
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.isle.finance/contract-documentation/receivablestorage.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
