Variable.type

Returns the type of the variable.

property type: Type

Query Example

from glider import *

def query():

  state_variables = (
    StateVariables()
    .exec(5)
  )

  print(state_variables[0].type)

  return state_variables

Output Example

Last updated