// Set the new tax rate (percentage between 0 and 100)
double newTaxRate = 10.0;
// Update the instance's tax rate
Instance updatedInstance = PixocracySDK.InstanceManager().updateTaxRate(instance, newTaxRate);
// Access the updated tax rate
double currentTaxRate = updatedInstance.getTaxRate();