We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The payload is declared as follows:
payload = { 'templateName': device_template['templateName'], 'templateDescription': device_template['templateDescription'], 'deviceType': device_template['deviceType'], 'factoryDefault': device_template['factoryDefault'], 'configType': device_template['configType'], 'featureTemplateUidRange': [] }
However there is no reference to the key 'featureTemplateUidRange' and instead the following is used:
payload['generalTemplates']
in the condition:
else: payload['generalTemplates'] = device_template['generalTemplates']
However, in the payload there is no mention of ['generalTemplates']
Can this be fixed in the next iteration?
Thank you
The text was updated successfully, but these errors were encountered:
I added the following to get it to work:
payload = { 'templateName': device_template['templateName'], 'templateDescription': device_template['templateDescription'], 'deviceType': device_template['deviceType'], 'factoryDefault': device_template['factoryDefault'], 'configType': device_template['configType'], 'featureTemplateUidRange': [], 'generalTemplates': device_template['generalTemplates'] }
Sorry, something went wrong.
No branches or pull requests
The payload is declared as follows:
However there is no reference to the key 'featureTemplateUidRange' and instead the following is used:
payload['generalTemplates']
in the condition:
However, in the payload there is no mention of ['generalTemplates']
Can this be fixed in the next iteration?
Thank you
The text was updated successfully, but these errors were encountered: