> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/callables/methodprop/methodprop.internal.md).

# MethodProp.INTERNAL

This property will filter for functions that are exposed in a smart contract and marked with an access level of internal.&#x20;

Functions declared with internal access are callable only from functions inside of the smart contract and all child contracts. In solidity a function that has access set as internal will have a similar signature to this one:

```solidity
function myFunction(uint256 investAmount) internal {}
```

An example of a query that would filter for functions that are marked as internal is:

```python
from glider import *
def query():
  props_included = [MethodProp.INTERNAL]
  functions = Functions()\
      .with_all_properties(props_included)\
      .exec(5)

  return functions
```

## Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FaCeF1uij3biqWqdfnjNs%2Fimage.png?alt=media&amp;token=8a453556-e2d7-44b4-8ffb-ad1bc7bd97e0" alt=""><figcaption></figcaption></figure>
