refactoring

This commit is contained in:
2025-07-13 06:59:56 +02:00
parent a9f66c9f70
commit 63284ab51c
25 changed files with 158 additions and 105 deletions

View File

@@ -0,0 +1,17 @@
package stateVariables
var TransferStatus = func() *StateVariable {
ts := StateType_String.NewStateValue("TransferStatus")
ts.SetAllowedValues(
"COMPLETED",
"ERROR",
"IN_PROGRESS",
"NONE",
)
ts.SetSendingEvents()
return ts
}()