Functions.with_all_properties()

with_all_properties is deprecated and will be removed in future versions. Please use with_properties in- stead. Adds a filter to get functions that have all given 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]) → Functions

Example

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

Last updated