I’m thinking of several potential ideas for plugins, where the number of variables returned may vary, or may be impractical to declare individually due to its quantity.
A way to handle these could be for the plugin to return an array, or maybe have the plugin process the data to generate and return a blob that would be ready to send to a screen as is.
What ways are there to handle these applications?
Example of impractical data to generate individual variables: energy consumption of 60+ nodes
Example of unknown data length: list of users logged in on slack (can’t edit the plugin to generate a new attribute every time there is a new user)
Thanks