> 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/functions/functions.with_all_properties.md).

# Functions.with\_all\_properties()

**Deprecated:** This method is deprecated and will be removed in future versions.

**Alternative:** Use `with_properties()` instead for improved functionality.

`with_all_properties(`*`properties: List[`*[*`MethodProp`*](/glider-ide/api/callables/methodprop.md)*`]`*`) →` [`Functions`](/glider-ide/api/functions.md)

## Example

```python
from glider import *

def query():
  properties = [MethodProp.IS_PAYABLE, MethodProp.EXTERNAL]
  # Fetch a list of functions with all the properties
  functions = Functions().with_all_properties(properties).exec(3)

  return functions
```

## Output

<figure><img src="/files/2qzSOErt9uBbF67XR8w2" alt=""><figcaption></figcaption></figure>
