I have a variable define as follows:
Set(
gblAppData,
{
Id: 1,
AppId: 1,
Version: "1.0.0.0",
TestingMode: true,
IsAdmin: false,
IsOwner: false,
IsAdminOwner: false,
User: User(),
LatestVersion: "0.1.0.0,
ForceUpgrade: false
}
);
I would like to update a property in this variable but all the functions take collections or tables. Is there any way to directly update a property in this variable?
Thank you.