StateVariable.properties()

Returns the list of the state variable's properties.

properties() → List[str]

Query Example

from glider import *

def query():

  state_variables = (
    StateVariables()
    .exec(1)
  )

  print(state_variables[0].properties())

  return state_variables

Output Example

Last updated