Merge pull request #10 from Microsoft/account

Fixing build config class so that it serializes correctly
This commit is contained in:
Jason Prickett MSFT 2017-05-01 15:25:48 -04:00 коммит произвёл GitHub
Родитель 731a93e839 e637554580
Коммит 2aa148d47d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -12,7 +12,7 @@ class BuildConfiguration(Model):
_attribute_map = {
'type': {'key': 'type', 'type': 'str'},
'working_directory': {'key': 'workingDirectory', 'type': 'str'},
'node_type': {'key': 'NodeJsTaskRunnerType', 'type': 'str'},
'node_type': {'key': 'NodeJsTaskRunner', 'type': 'str'},
}
def __init__(self, type=None, working_directory=None, node_type=None):