teamdbapi 3.11.0__tar.gz → 3.12.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/PKG-INFO +3 -3
  2. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/README.md +2 -2
  3. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/pyproject.toml +1 -1
  4. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/assembly_api.py +6 -6
  5. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/event_api.py +2 -2
  6. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/import_export_api.py +4 -4
  7. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/issue_api.py +85 -0
  8. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/model_field_api.py +4 -4
  9. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/notes_authorization_api.py +2 -2
  10. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/parameter_api.py +4 -4
  11. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/report_api.py +2 -2
  12. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/revision_api.py +6 -6
  13. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/calibration.py +4 -4
  14. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/group.py +2 -2
  15. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/lap.py +2 -2
  16. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/lap_report_options.py +2 -2
  17. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/parameter.py +2 -2
  18. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/part.py +35 -7
  19. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/part_count.py +31 -3
  20. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/session.py +2 -2
  21. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/target.py +2 -2
  22. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/.gitignore +0 -0
  23. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/.swagger-codegen/VERSION +0 -0
  24. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/.swagger-codegen-ignore +0 -0
  25. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/.travis.yml +0 -0
  26. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/LICENSE +0 -0
  27. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/git_push.sh +0 -0
  28. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/requirements.txt +0 -0
  29. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/setup.py +0 -0
  30. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/__init__.py +0 -0
  31. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/__init__.py +0 -0
  32. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/car_api.py +0 -0
  33. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/component_api.py +0 -0
  34. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/config_api.py +0 -0
  35. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/criteria_api.py +0 -0
  36. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/edit_api.py +0 -0
  37. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/fixed_field_api.py +0 -0
  38. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/group_api.py +0 -0
  39. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/lap_api.py +0 -0
  40. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/lap_report_api.py +0 -0
  41. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/mounting_api.py +0 -0
  42. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/overall_api.py +0 -0
  43. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/parameter_binding_api.py +0 -0
  44. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/part_api.py +0 -0
  45. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/revision_editor_selector_api.py +0 -0
  46. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/run_api.py +0 -0
  47. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/script_api.py +0 -0
  48. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/session_api.py +0 -0
  49. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/target_api.py +0 -0
  50. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/team_db_list_api.py +0 -0
  51. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/team_db_view_api.py +0 -0
  52. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/tire_api.py +0 -0
  53. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/tire_set_api.py +0 -0
  54. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/track_api.py +0 -0
  55. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/track_layout_api.py +0 -0
  56. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/update_request_api.py +0 -0
  57. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/user_api.py +0 -0
  58. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/value_field_api.py +0 -0
  59. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api/version_api.py +0 -0
  60. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/api_client.py +0 -0
  61. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/configuration.py +0 -0
  62. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/__init__.py +0 -0
  63. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/add_part_car_parameter_arg.py +0 -0
  64. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/assembly.py +0 -0
  65. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/bleed_adjustment.py +0 -0
  66. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/car.py +0 -0
  67. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/car_parameters_context.py +0 -0
  68. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/compare_options.py +0 -0
  69. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/compare_result.py +0 -0
  70. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/compare_result_detail.py +0 -0
  71. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/component.py +0 -0
  72. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/copy_from_tags_args.py +0 -0
  73. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/couple_guid_text.py +0 -0
  74. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/criteria.py +0 -0
  75. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/criteria_set.py +0 -0
  76. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/criteria_value.py +0 -0
  77. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/criteria_value_detail.py +0 -0
  78. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/event.py +0 -0
  79. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/file_revision_info.py +0 -0
  80. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/fixed_field.py +0 -0
  81. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/import_parameters_args.py +0 -0
  82. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/import_parameters_results.py +0 -0
  83. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/import_revisions_args.py +0 -0
  84. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/import_revisions_info.py +0 -0
  85. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/import_revisions_results.py +0 -0
  86. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/issue.py +0 -0
  87. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/issue_custom_field_value.py +0 -0
  88. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/issue_priority.py +0 -0
  89. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/issue_project.py +0 -0
  90. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/issue_sector.py +0 -0
  91. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/issue_status.py +0 -0
  92. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/issue_type.py +0 -0
  93. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/issue_workflow.py +0 -0
  94. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/item_value.py +0 -0
  95. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/item_value_key.py +0 -0
  96. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/model_field.py +0 -0
  97. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/model_field_authorization.py +0 -0
  98. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/mounting.py +0 -0
  99. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/notes_authorization.py +0 -0
  100. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/notes_context.py +0 -0
  101. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/overall.py +0 -0
  102. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/parameter_binding.py +0 -0
  103. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/parameter_cross_table.py +0 -0
  104. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/part_car_parameters.py +0 -0
  105. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/revision.py +0 -0
  106. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/revision_value.py +0 -0
  107. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/run.py +0 -0
  108. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/script.py +0 -0
  109. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/string_with_font_style.py +0 -0
  110. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/team_db_list.py +0 -0
  111. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/team_db_list_item.py +0 -0
  112. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/tire.py +0 -0
  113. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/tire_set.py +0 -0
  114. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/track.py +0 -0
  115. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/track_layout.py +0 -0
  116. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/user.py +0 -0
  117. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/user_group.py +0 -0
  118. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/value_field.py +0 -0
  119. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/models/version.py +0 -0
  120. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/teamdbapi/rest.py +0 -0
  121. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/test-requirements.txt +0 -0
  122. {teamdbapi-3.11.0 → teamdbapi-3.12.0}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: teamdbapi
3
- Version: 3.11.0
3
+ Version: 3.12.0
4
4
  Summary: Easily access the TeamDB Web API.
5
5
  Keywords: teamdbapi,Trackside,Trackside Software,TeamDB
6
6
  Author-email: Trackside Software <support@trackside.fr>
@@ -20,13 +20,13 @@ Project-URL: Home, https://www.tracksidesoftware.fr/teamdb
20
20
  # teamdbapi
21
21
  This module enables you to easily access the TeamDB Web API.
22
22
 
23
- - Package version: 3.11.0
23
+ - Package version: 3.12.0
24
24
  - TeamDB Web API version: 2.0
25
25
 
26
26
  ## Requirements.
27
27
 
28
28
  - Python 3.4+
29
- - TeamDB 3.11.0
29
+ - TeamDB 3.12.0
30
30
 
31
31
  ## Installation and usage
32
32
  ### pip install
@@ -1,13 +1,13 @@
1
1
  # teamdbapi
2
2
  This module enables you to easily access the TeamDB Web API.
3
3
 
4
- - Package version: 3.11.0
4
+ - Package version: 3.12.0
5
5
  - TeamDB Web API version: 2.0
6
6
 
7
7
  ## Requirements.
8
8
 
9
9
  - Python 3.4+
10
- - TeamDB 3.11.0
10
+ - TeamDB 3.12.0
11
11
 
12
12
  ## Installation and usage
13
13
  ### pip install
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
4
4
 
5
5
  [project]
6
6
  name = "teamdbapi"
7
- version = "3.11.0"
7
+ version = "3.12.0"
8
8
  description = "Easily access the TeamDB Web API."
9
9
  authors = [{name = "Trackside Software", email = "support@trackside.fr"}]
10
10
  readme = "README.md"
@@ -446,7 +446,7 @@ class AssemblyApi(object):
446
446
  collection_formats=collection_formats)
447
447
 
448
448
  def create_assembly(self, assembly, **kwargs): # noqa: E501
449
- """Create an assembly. The revisions list content will be ignored. You have to call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
449
+ """Create an assembly. The revisions list content will be ignored. You must call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
450
450
 
451
451
  Set Assembly.Id empty (00000000-0000-0000-0000-000000000000) in order to create a new assembly. # noqa: E501
452
452
  This method makes a synchronous HTTP request by default. To make an
@@ -468,7 +468,7 @@ class AssemblyApi(object):
468
468
  return data
469
469
 
470
470
  def create_assembly_with_http_info(self, assembly, **kwargs): # noqa: E501
471
- """Create an assembly. The revisions list content will be ignored. You have to call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
471
+ """Create an assembly. The revisions list content will be ignored. You must call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
472
472
 
473
473
  Set Assembly.Id empty (00000000-0000-0000-0000-000000000000) in order to create a new assembly. # noqa: E501
474
474
  This method makes a synchronous HTTP request by default. To make an
@@ -744,7 +744,7 @@ class AssemblyApi(object):
744
744
 
745
745
  :param async_req bool
746
746
  :param str assembly_id: The unique assembly id corresponding to the assembly to export. (required)
747
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.m (required)
747
+ :param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.m (required)
748
748
  :return: bool
749
749
  If the method is called asynchronously,
750
750
  returns the request thread.
@@ -766,7 +766,7 @@ class AssemblyApi(object):
766
766
 
767
767
  :param async_req bool
768
768
  :param str assembly_id: The unique assembly id corresponding to the assembly to export. (required)
769
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.m (required)
769
+ :param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.m (required)
770
770
  :return: bool
771
771
  If the method is called asynchronously,
772
772
  returns the request thread.
@@ -2004,7 +2004,7 @@ class AssemblyApi(object):
2004
2004
  collection_formats=collection_formats)
2005
2005
 
2006
2006
  def update_assembly(self, assembly_id, assembly, **kwargs): # noqa: E501
2007
- """Update an assembly. The revisions list content will be ignored. You have to call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
2007
+ """Update an assembly. The revisions list content will be ignored. You must call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
2008
2008
 
2009
2009
  This method makes a synchronous HTTP request by default. To make an
2010
2010
  asynchronous HTTP request, please pass async_req=True
@@ -2026,7 +2026,7 @@ class AssemblyApi(object):
2026
2026
  return data
2027
2027
 
2028
2028
  def update_assembly_with_http_info(self, assembly_id, assembly, **kwargs): # noqa: E501
2029
- """Update an assembly. The revisions list content will be ignored. You have to call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
2029
+ """Update an assembly. The revisions list content will be ignored. You must call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
2030
2030
 
2031
2031
  This method makes a synchronous HTTP request by default. To make an
2032
2032
  asynchronous HTTP request, please pass async_req=True
@@ -593,7 +593,7 @@ class EventApi(object):
593
593
 
594
594
  :param async_req bool
595
595
  :param str event_id: The unique event id for which you want to lock the event (required)
596
- :param bool force_on_my_server: If true force the lock on your server even if it exists a lock on another server. If you force the lock on this server, this may cause conflicts durring the next replication of the databases and corrupt them.
596
+ :param bool force_on_my_server: If true force the lock on your server even if it exists a lock on another server. If you force the lock on this server, this may cause conflicts during the next replication of the databases and corrupt them.
597
597
  :return: Event
598
598
  If the method is called asynchronously,
599
599
  returns the request thread.
@@ -615,7 +615,7 @@ class EventApi(object):
615
615
 
616
616
  :param async_req bool
617
617
  :param str event_id: The unique event id for which you want to lock the event (required)
618
- :param bool force_on_my_server: If true force the lock on your server even if it exists a lock on another server. If you force the lock on this server, this may cause conflicts durring the next replication of the databases and corrupt them.
618
+ :param bool force_on_my_server: If true force the lock on your server even if it exists a lock on another server. If you force the lock on this server, this may cause conflicts during the next replication of the databases and corrupt them.
619
619
  :return: Event
620
620
  If the method is called asynchronously,
621
621
  returns the request thread.
@@ -44,7 +44,7 @@ class ImportExportApi(object):
44
44
  :param async_req bool
45
45
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
46
46
  :param str source_id: The Source ID string for which you want to export the data (required)
47
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.xml (required)
47
+ :param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.xml (required)
48
48
  :return: None
49
49
  If the method is called asynchronously,
50
50
  returns the request thread.
@@ -67,7 +67,7 @@ class ImportExportApi(object):
67
67
  :param async_req bool
68
68
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
69
69
  :param str source_id: The Source ID string for which you want to export the data (required)
70
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.xml (required)
70
+ :param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.xml (required)
71
71
  :return: None
72
72
  If the method is called asynchronously,
73
73
  returns the request thread.
@@ -158,7 +158,7 @@ class ImportExportApi(object):
158
158
  :param str lap_id: The lap ID from which perform the export or the empty id 00000000-0000-0000-0000-000000000000 (required)
159
159
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
160
160
  :param str source_id: The Source ID string for which you want to export the data (required)
161
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.xml (required)
161
+ :param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.xml (required)
162
162
  :return: None
163
163
  If the method is called asynchronously,
164
164
  returns the request thread.
@@ -186,7 +186,7 @@ class ImportExportApi(object):
186
186
  :param str lap_id: The lap ID from which perform the export or the empty id 00000000-0000-0000-0000-000000000000 (required)
187
187
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
188
188
  :param str source_id: The Source ID string for which you want to export the data (required)
189
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.xml (required)
189
+ :param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.xml (required)
190
190
  :return: None
191
191
  If the method is called asynchronously,
192
192
  returns the request thread.
@@ -850,6 +850,91 @@ class IssueApi(object):
850
850
  _request_timeout=params.get('_request_timeout'),
851
851
  collection_formats=collection_formats)
852
852
 
853
+ def get_all_issues_selected(self, **kwargs): # noqa: E501
854
+ """Get the list of all Issues currently selected in the Issues list view opened on the client. # noqa: E501
855
+
856
+ This method makes a synchronous HTTP request by default. To make an
857
+ asynchronous HTTP request, please pass async_req=True
858
+ >>> thread = api.get_all_issues_selected(async_req=True)
859
+ >>> result = thread.get()
860
+
861
+ :param async_req bool
862
+ :return: list[Issue]
863
+ If the method is called asynchronously,
864
+ returns the request thread.
865
+ """
866
+ kwargs['_return_http_data_only'] = True
867
+ if kwargs.get('async_req'):
868
+ return self.get_all_issues_selected_with_http_info(**kwargs) # noqa: E501
869
+ else:
870
+ (data) = self.get_all_issues_selected_with_http_info(**kwargs) # noqa: E501
871
+ return data
872
+
873
+ def get_all_issues_selected_with_http_info(self, **kwargs): # noqa: E501
874
+ """Get the list of all Issues currently selected in the Issues list view opened on the client. # noqa: E501
875
+
876
+ This method makes a synchronous HTTP request by default. To make an
877
+ asynchronous HTTP request, please pass async_req=True
878
+ >>> thread = api.get_all_issues_selected_with_http_info(async_req=True)
879
+ >>> result = thread.get()
880
+
881
+ :param async_req bool
882
+ :return: list[Issue]
883
+ If the method is called asynchronously,
884
+ returns the request thread.
885
+ """
886
+
887
+ all_params = [] # noqa: E501
888
+ all_params.append('async_req')
889
+ all_params.append('_return_http_data_only')
890
+ all_params.append('_preload_content')
891
+ all_params.append('_request_timeout')
892
+
893
+ params = locals()
894
+ for key, val in six.iteritems(params['kwargs']):
895
+ if key not in all_params:
896
+ raise TypeError(
897
+ "Got an unexpected keyword argument '%s'"
898
+ " to method get_all_issues_selected" % key
899
+ )
900
+ params[key] = val
901
+ del params['kwargs']
902
+
903
+ collection_formats = {}
904
+
905
+ path_params = {}
906
+
907
+ query_params = []
908
+
909
+ header_params = {}
910
+
911
+ form_params = []
912
+ local_var_files = {}
913
+
914
+ body_params = None
915
+ # HTTP header `Accept`
916
+ header_params['Accept'] = self.api_client.select_header_accept(
917
+ ['application/json', 'text/json']) # noqa: E501
918
+
919
+ # Authentication setting
920
+ auth_settings = ['TdbApiKey'] # noqa: E501
921
+
922
+ return self.api_client.call_api(
923
+ '/teamdbapi/v2.0/issues/selected', 'GET',
924
+ path_params,
925
+ query_params,
926
+ header_params,
927
+ body=body_params,
928
+ post_params=form_params,
929
+ files=local_var_files,
930
+ response_type='list[Issue]', # noqa: E501
931
+ auth_settings=auth_settings,
932
+ async_req=params.get('async_req'),
933
+ _return_http_data_only=params.get('_return_http_data_only'),
934
+ _preload_content=params.get('_preload_content', True),
935
+ _request_timeout=params.get('_request_timeout'),
936
+ collection_formats=collection_formats)
937
+
853
938
  def get_current_issue(self, **kwargs): # noqa: E501
854
939
  """Get the current Issue. # noqa: E501
855
940
 
@@ -317,7 +317,7 @@ class ModelFieldApi(object):
317
317
  collection_formats=collection_formats)
318
318
 
319
319
  def get_model_field_authorizations(self, model_field_id, **kwargs): # noqa: E501
320
- """Get authorizations for a model field via its unique id. # noqa: E501
320
+ """Get authorisations for a model field via its unique id. # noqa: E501
321
321
 
322
322
  This method makes a synchronous HTTP request by default. To make an
323
323
  asynchronous HTTP request, please pass async_req=True
@@ -338,7 +338,7 @@ class ModelFieldApi(object):
338
338
  return data
339
339
 
340
340
  def get_model_field_authorizations_with_http_info(self, model_field_id, **kwargs): # noqa: E501
341
- """Get authorizations for a model field via its unique id. # noqa: E501
341
+ """Get authorisations for a model field via its unique id. # noqa: E501
342
342
 
343
343
  This method makes a synchronous HTTP request by default. To make an
344
344
  asynchronous HTTP request, please pass async_req=True
@@ -616,7 +616,7 @@ class ModelFieldApi(object):
616
616
  >>> result = thread.get()
617
617
 
618
618
  :param async_req bool
619
- :param str model_field_id: The unique model field id for which you want to set/update the authorizations (required)
619
+ :param str model_field_id: The unique model field id for which you want to set/update the authorisations (required)
620
620
  :param ModelFieldAuthorization authorization: The authorization for the model field.
621
621
  :return: ModelFieldAuthorization
622
622
  If the method is called asynchronously,
@@ -638,7 +638,7 @@ class ModelFieldApi(object):
638
638
  >>> result = thread.get()
639
639
 
640
640
  :param async_req bool
641
- :param str model_field_id: The unique model field id for which you want to set/update the authorizations (required)
641
+ :param str model_field_id: The unique model field id for which you want to set/update the authorisations (required)
642
642
  :param ModelFieldAuthorization authorization: The authorization for the model field.
643
643
  :return: ModelFieldAuthorization
644
644
  If the method is called asynchronously,
@@ -34,7 +34,7 @@ class NotesAuthorizationApi(object):
34
34
  self.api_client = api_client
35
35
 
36
36
  def get_notes_authorizations(self, itembase_id, **kwargs): # noqa: E501
37
- """Get the list of authorizations for a given Id corresponding to an Event or a Car # noqa: E501
37
+ """Get the list of authorisations for a given Id corresponding to an Event or a Car # noqa: E501
38
38
 
39
39
  This method makes a synchronous HTTP request by default. To make an
40
40
  asynchronous HTTP request, please pass async_req=True
@@ -55,7 +55,7 @@ class NotesAuthorizationApi(object):
55
55
  return data
56
56
 
57
57
  def get_notes_authorizations_with_http_info(self, itembase_id, **kwargs): # noqa: E501
58
- """Get the list of authorizations for a given Id corresponding to an Event or a Car # noqa: E501
58
+ """Get the list of authorisations for a given Id corresponding to an Event or a Car # noqa: E501
59
59
 
60
60
  This method makes a synchronous HTTP request by default. To make an
61
61
  asynchronous HTTP request, please pass async_req=True
@@ -874,8 +874,8 @@ class ParameterApi(object):
874
874
  >>> result = thread.get()
875
875
 
876
876
  :param async_req bool
877
- :param str version_id: The version unique id to which the responsibles will be reseted (required)
878
- :param list[str] param_ids: The parameters list to which the responsibles will be reseted (required)
877
+ :param str version_id: The version unique id to which the responsibles will be reset (required)
878
+ :param list[str] param_ids: The parameters list to which the responsibles will be reset (required)
879
879
  :return: None
880
880
  If the method is called asynchronously,
881
881
  returns the request thread.
@@ -896,8 +896,8 @@ class ParameterApi(object):
896
896
  >>> result = thread.get()
897
897
 
898
898
  :param async_req bool
899
- :param str version_id: The version unique id to which the responsibles will be reseted (required)
900
- :param list[str] param_ids: The parameters list to which the responsibles will be reseted (required)
899
+ :param str version_id: The version unique id to which the responsibles will be reset (required)
900
+ :param list[str] param_ids: The parameters list to which the responsibles will be reset (required)
901
901
  :return: None
902
902
  If the method is called asynchronously,
903
903
  returns the request thread.
@@ -44,7 +44,7 @@ class ReportApi(object):
44
44
  :param async_req bool
45
45
  :param str report_name: The report name (required)
46
46
  :param str format: The output file format (required)
47
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.pdf (required)
47
+ :param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.pdf (required)
48
48
  :return: None
49
49
  If the method is called asynchronously,
50
50
  returns the request thread.
@@ -67,7 +67,7 @@ class ReportApi(object):
67
67
  :param async_req bool
68
68
  :param str report_name: The report name (required)
69
69
  :param str format: The output file format (required)
70
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.pdf (required)
70
+ :param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.pdf (required)
71
71
  :return: None
72
72
  If the method is called asynchronously,
73
73
  returns the request thread.
@@ -34,7 +34,7 @@ class RevisionApi(object):
34
34
  self.api_client = api_client
35
35
 
36
36
  def create_revision(self, version_id, revision, **kwargs): # noqa: E501
37
- """Create a revision. You have to specify a version id to which the revision is created. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
37
+ """Create a revision. You must specify a version id to which the revision is created. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
38
38
 
39
39
  Set the Revision.Id to empty (00000000-0000-0000-0000-000000000000), it will be generated by the server. # noqa: E501
40
40
  This method makes a synchronous HTTP request by default. To make an
@@ -57,7 +57,7 @@ class RevisionApi(object):
57
57
  return data
58
58
 
59
59
  def create_revision_with_http_info(self, version_id, revision, **kwargs): # noqa: E501
60
- """Create a revision. You have to specify a version id to which the revision is created. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
60
+ """Create a revision. You must specify a version id to which the revision is created. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
61
61
 
62
62
  Set the Revision.Id to empty (00000000-0000-0000-0000-000000000000), it will be generated by the server. # noqa: E501
63
63
  This method makes a synchronous HTTP request by default. To make an
@@ -373,7 +373,7 @@ class RevisionApi(object):
373
373
  :param async_req bool
374
374
  :param str revision_id: The revision id to export. (required)
375
375
  :param str version_id: The version id to which you want to export the revision value. (required)
376
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.m (required)
376
+ :param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.m (required)
377
377
  :return: bool
378
378
  If the method is called asynchronously,
379
379
  returns the request thread.
@@ -396,7 +396,7 @@ class RevisionApi(object):
396
396
  :param async_req bool
397
397
  :param str revision_id: The revision id to export. (required)
398
398
  :param str version_id: The version id to which you want to export the revision value. (required)
399
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.m (required)
399
+ :param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.m (required)
400
400
  :return: bool
401
401
  If the method is called asynchronously,
402
402
  returns the request thread.
@@ -1409,7 +1409,7 @@ class RevisionApi(object):
1409
1409
  collection_formats=collection_formats)
1410
1410
 
1411
1411
  def update_revision(self, revision_id, version_id, revision, **kwargs): # noqa: E501
1412
- """Update a revision. You have to specify a version id to which the revision is updated. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
1412
+ """Update a revision. You must specify a version id to which the revision is updated. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
1413
1413
 
1414
1414
  This method makes a synchronous HTTP request by default. To make an
1415
1415
  asynchronous HTTP request, please pass async_req=True
@@ -1433,7 +1433,7 @@ class RevisionApi(object):
1433
1433
  return data
1434
1434
 
1435
1435
  def update_revision_with_http_info(self, revision_id, version_id, revision, **kwargs): # noqa: E501
1436
- """Update a revision. You have to specify a version id to which the revision is updated. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
1436
+ """Update a revision. You must specify a version id to which the revision is updated. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
1437
1437
 
1438
1438
  This method makes a synchronous HTTP request by default. To make an
1439
1439
  asynchronous HTTP request, please pass async_req=True
@@ -640,7 +640,7 @@ class Calibration(object):
640
640
  def UpperLimit(self):
641
641
  """Gets the UpperLimit of this Calibration. # noqa: E501
642
642
 
643
- The upper value authorized # noqa: E501
643
+ The upper value authorised # noqa: E501
644
644
 
645
645
  :return: The UpperLimit of this Calibration. # noqa: E501
646
646
  :rtype: float
@@ -651,7 +651,7 @@ class Calibration(object):
651
651
  def UpperLimit(self, UpperLimit):
652
652
  """Sets the UpperLimit of this Calibration.
653
653
 
654
- The upper value authorized # noqa: E501
654
+ The upper value authorised # noqa: E501
655
655
 
656
656
  :param UpperLimit: The UpperLimit of this Calibration. # noqa: E501
657
657
  :type: float
@@ -663,7 +663,7 @@ class Calibration(object):
663
663
  def LowerLimit(self):
664
664
  """Gets the LowerLimit of this Calibration. # noqa: E501
665
665
 
666
- The lower value authorized # noqa: E501
666
+ The lower value authorised # noqa: E501
667
667
 
668
668
  :return: The LowerLimit of this Calibration. # noqa: E501
669
669
  :rtype: float
@@ -674,7 +674,7 @@ class Calibration(object):
674
674
  def LowerLimit(self, LowerLimit):
675
675
  """Sets the LowerLimit of this Calibration.
676
676
 
677
- The lower value authorized # noqa: E501
677
+ The lower value authorised # noqa: E501
678
678
 
679
679
  :param LowerLimit: The LowerLimit of this Calibration. # noqa: E501
680
680
  :type: float
@@ -156,7 +156,7 @@ class Group(object):
156
156
  def ParentGroupId(self):
157
157
  """Gets the ParentGroupId of this Group. # noqa: E501
158
158
 
159
- The parent group id to which the group belongs to. Leave the property to Guid.Empty (00000000-0000-0000-0000-000000000000) if the group doesn't have parent. # noqa: E501
159
+ The parent group id to which the group belongs to. Leave the property to Guid.Empty (00000000-0000-0000-0000-000000000000) if the group does not have parent. # noqa: E501
160
160
 
161
161
  :return: The ParentGroupId of this Group. # noqa: E501
162
162
  :rtype: str
@@ -167,7 +167,7 @@ class Group(object):
167
167
  def ParentGroupId(self, ParentGroupId):
168
168
  """Sets the ParentGroupId of this Group.
169
169
 
170
- The parent group id to which the group belongs to. Leave the property to Guid.Empty (00000000-0000-0000-0000-000000000000) if the group doesn't have parent. # noqa: E501
170
+ The parent group id to which the group belongs to. Leave the property to Guid.Empty (00000000-0000-0000-0000-000000000000) if the group does not have parent. # noqa: E501
171
171
 
172
172
  :param ParentGroupId: The ParentGroupId of this Group. # noqa: E501
173
173
  :type: str
@@ -559,7 +559,7 @@ class Lap(object):
559
559
  def LapTimePower(self):
560
560
  """Gets the LapTimePower of this Lap. # noqa: E501
561
561
 
562
- Time elpased in power # noqa: E501
562
+ Time elapsed in power # noqa: E501
563
563
 
564
564
  :return: The LapTimePower of this Lap. # noqa: E501
565
565
  :rtype: float
@@ -570,7 +570,7 @@ class Lap(object):
570
570
  def LapTimePower(self, LapTimePower):
571
571
  """Sets the LapTimePower of this Lap.
572
572
 
573
- Time elpased in power # noqa: E501
573
+ Time elapsed in power # noqa: E501
574
574
 
575
575
  :param LapTimePower: The LapTimePower of this Lap. # noqa: E501
576
576
  :type: float
@@ -121,7 +121,7 @@ class LapReportOptions(object):
121
121
  def LapReportFilePath(self):
122
122
  """Gets the LapReportFilePath of this LapReportOptions. # noqa: E501
123
123
 
124
- The file path to the lap report. You have to provide the file extension for example : C:/path/MyFile.csv. The path must be described only by / or \\\\\\\\. # noqa: E501
124
+ The file path to the lap report. You must provide the file extension for example : C:/path/MyFile.csv. The path must be described only by / or \\\\\\\\. # noqa: E501
125
125
 
126
126
  :return: The LapReportFilePath of this LapReportOptions. # noqa: E501
127
127
  :rtype: str
@@ -132,7 +132,7 @@ class LapReportOptions(object):
132
132
  def LapReportFilePath(self, LapReportFilePath):
133
133
  """Sets the LapReportFilePath of this LapReportOptions.
134
134
 
135
- The file path to the lap report. You have to provide the file extension for example : C:/path/MyFile.csv. The path must be described only by / or \\\\\\\\. # noqa: E501
135
+ The file path to the lap report. You must provide the file extension for example : C:/path/MyFile.csv. The path must be described only by / or \\\\\\\\. # noqa: E501
136
136
 
137
137
  :param LapReportFilePath: The LapReportFilePath of this LapReportOptions. # noqa: E501
138
138
  :type: str
@@ -186,7 +186,7 @@ class Parameter(object):
186
186
  def TargetId(self):
187
187
  """Gets the TargetId of this Parameter. # noqa: E501
188
188
 
189
- The target id to which the parameter belongs to. Parameters are linked to the version through the VersionParam object. But you don't have to care about this. Just call th parameters Api function and provide a version id to which you want to get the parameters. # noqa: E501
189
+ The target id to which the parameter belongs to. Parameters are linked to the version through the VersionParam object. But you do not have to care about this. Just call th parameters Api function and provide a version id to which you want to get the parameters. # noqa: E501
190
190
 
191
191
  :return: The TargetId of this Parameter. # noqa: E501
192
192
  :rtype: str
@@ -197,7 +197,7 @@ class Parameter(object):
197
197
  def TargetId(self, TargetId):
198
198
  """Sets the TargetId of this Parameter.
199
199
 
200
- The target id to which the parameter belongs to. Parameters are linked to the version through the VersionParam object. But you don't have to care about this. Just call th parameters Api function and provide a version id to which you want to get the parameters. # noqa: E501
200
+ The target id to which the parameter belongs to. Parameters are linked to the version through the VersionParam object. But you do not have to care about this. Just call th parameters Api function and provide a version id to which you want to get the parameters. # noqa: E501
201
201
 
202
202
  :param TargetId: The TargetId of this Parameter. # noqa: E501
203
203
  :type: str
@@ -68,7 +68,8 @@ class Part(object):
68
68
  'DnuDistance': 'float',
69
69
  'DnuTime': 'float',
70
70
  'DnuEnergy': 'float',
71
- 'DnuDistanceFactored': 'float'
71
+ 'DnuDistanceFactored': 'float',
72
+ 'SupportedClassTags': 'str'
72
73
  }
73
74
 
74
75
  attribute_map = {
@@ -107,10 +108,11 @@ class Part(object):
107
108
  'DnuDistance': 'DnuDistance',
108
109
  'DnuTime': 'DnuTime',
109
110
  'DnuEnergy': 'DnuEnergy',
110
- 'DnuDistanceFactored': 'DnuDistanceFactored'
111
+ 'DnuDistanceFactored': 'DnuDistanceFactored',
112
+ 'SupportedClassTags': 'SupportedClassTags'
111
113
  }
112
114
 
113
- def __init__(self, PartId=None, IsLifed=None, PartName=None, ManufacturerNumber=None, Description=None, Tags=None, IsClass=None, HasExpirationDate=None, MaxDistance=None, MinDistance=None, MaxTime=None, DateCreationUtc=None, Creator=None, LastUpdateDateUtc=None, LastUpdateUser=None, PartStatus=None, PartType=None, Manufacturer=None, ParentPartClass=None, IconId=None, Department=None, Annotation=None, MultiManufacturer=None, ClassificationCode=None, MaxDistanceFactored=None, FactorId=None, MaxEnergy=None, CriteriaSetId=None, InheritedStatus=None, MinWeight=None, MaxWeight=None, IsSensor=None, DnuDistance=None, DnuTime=None, DnuEnergy=None, DnuDistanceFactored=None, _configuration=None): # noqa: E501
115
+ def __init__(self, PartId=None, IsLifed=None, PartName=None, ManufacturerNumber=None, Description=None, Tags=None, IsClass=None, HasExpirationDate=None, MaxDistance=None, MinDistance=None, MaxTime=None, DateCreationUtc=None, Creator=None, LastUpdateDateUtc=None, LastUpdateUser=None, PartStatus=None, PartType=None, Manufacturer=None, ParentPartClass=None, IconId=None, Department=None, Annotation=None, MultiManufacturer=None, ClassificationCode=None, MaxDistanceFactored=None, FactorId=None, MaxEnergy=None, CriteriaSetId=None, InheritedStatus=None, MinWeight=None, MaxWeight=None, IsSensor=None, DnuDistance=None, DnuTime=None, DnuEnergy=None, DnuDistanceFactored=None, SupportedClassTags=None, _configuration=None): # noqa: E501
114
116
  """Part - a model defined in Swagger""" # noqa: E501
115
117
  if _configuration is None:
116
118
  _configuration = Configuration()
@@ -152,6 +154,7 @@ class Part(object):
152
154
  self._DnuTime = None
153
155
  self._DnuEnergy = None
154
156
  self._DnuDistanceFactored = None
157
+ self._SupportedClassTags = None
155
158
  self.discriminator = None
156
159
 
157
160
  self.PartId = PartId
@@ -222,6 +225,8 @@ class Part(object):
222
225
  self.DnuEnergy = DnuEnergy
223
226
  if DnuDistanceFactored is not None:
224
227
  self.DnuDistanceFactored = DnuDistanceFactored
228
+ if SupportedClassTags is not None:
229
+ self.SupportedClassTags = SupportedClassTags
225
230
 
226
231
  @property
227
232
  def PartId(self):
@@ -915,7 +920,7 @@ class Part(object):
915
920
  def MinWeight(self):
916
921
  """Gets the MinWeight of this Part. # noqa: E501
917
922
 
918
- Minimum authorized weight for the part # noqa: E501
923
+ Minimum authorised weight for the part # noqa: E501
919
924
 
920
925
  :return: The MinWeight of this Part. # noqa: E501
921
926
  :rtype: float
@@ -926,7 +931,7 @@ class Part(object):
926
931
  def MinWeight(self, MinWeight):
927
932
  """Sets the MinWeight of this Part.
928
933
 
929
- Minimum authorized weight for the part # noqa: E501
934
+ Minimum authorised weight for the part # noqa: E501
930
935
 
931
936
  :param MinWeight: The MinWeight of this Part. # noqa: E501
932
937
  :type: float
@@ -938,7 +943,7 @@ class Part(object):
938
943
  def MaxWeight(self):
939
944
  """Gets the MaxWeight of this Part. # noqa: E501
940
945
 
941
- Maximum authorized weight for the part # noqa: E501
946
+ Maximum authorised weight for the part # noqa: E501
942
947
 
943
948
  :return: The MaxWeight of this Part. # noqa: E501
944
949
  :rtype: float
@@ -949,7 +954,7 @@ class Part(object):
949
954
  def MaxWeight(self, MaxWeight):
950
955
  """Sets the MaxWeight of this Part.
951
956
 
952
- Maximum authorized weight for the part # noqa: E501
957
+ Maximum authorised weight for the part # noqa: E501
953
958
 
954
959
  :param MaxWeight: The MaxWeight of this Part. # noqa: E501
955
960
  :type: float
@@ -1072,6 +1077,29 @@ class Part(object):
1072
1077
 
1073
1078
  self._DnuDistanceFactored = DnuDistanceFactored
1074
1079
 
1080
+ @property
1081
+ def SupportedClassTags(self):
1082
+ """Gets the SupportedClassTags of this Part. # noqa: E501
1083
+
1084
+ Contient la liste de tous les tags supportés par la part si elle est de type Class Contient la liste du sous ensemble des tags supportés par la part si elle dérive d'une part class (sous ensemble des tags appartient aux tags de la part class). # noqa: E501
1085
+
1086
+ :return: The SupportedClassTags of this Part. # noqa: E501
1087
+ :rtype: str
1088
+ """
1089
+ return self._SupportedClassTags
1090
+
1091
+ @SupportedClassTags.setter
1092
+ def SupportedClassTags(self, SupportedClassTags):
1093
+ """Sets the SupportedClassTags of this Part.
1094
+
1095
+ Contient la liste de tous les tags supportés par la part si elle est de type Class Contient la liste du sous ensemble des tags supportés par la part si elle dérive d'une part class (sous ensemble des tags appartient aux tags de la part class). # noqa: E501
1096
+
1097
+ :param SupportedClassTags: The SupportedClassTags of this Part. # noqa: E501
1098
+ :type: str
1099
+ """
1100
+
1101
+ self._SupportedClassTags = SupportedClassTags
1102
+
1075
1103
  def to_dict(self):
1076
1104
  """Returns the model properties as a dict"""
1077
1105
  result = {}
@@ -37,7 +37,8 @@ class PartCount(object):
37
37
  'PartChildId': 'str',
38
38
  'Count': 'int',
39
39
  'LastUpdateDateUtc': 'datetime',
40
- 'LastUpdateUser': 'str'
40
+ 'LastUpdateUser': 'str',
41
+ 'ClassTags': 'str'
41
42
  }
42
43
 
43
44
  attribute_map = {
@@ -45,10 +46,11 @@ class PartCount(object):
45
46
  'PartChildId': 'PartChildId',
46
47
  'Count': 'Count',
47
48
  'LastUpdateDateUtc': 'LastUpdateDateUtc',
48
- 'LastUpdateUser': 'LastUpdateUser'
49
+ 'LastUpdateUser': 'LastUpdateUser',
50
+ 'ClassTags': 'ClassTags'
49
51
  }
50
52
 
51
- def __init__(self, PartParentId=None, PartChildId=None, Count=None, LastUpdateDateUtc=None, LastUpdateUser=None, _configuration=None): # noqa: E501
53
+ def __init__(self, PartParentId=None, PartChildId=None, Count=None, LastUpdateDateUtc=None, LastUpdateUser=None, ClassTags=None, _configuration=None): # noqa: E501
52
54
  """PartCount - a model defined in Swagger""" # noqa: E501
53
55
  if _configuration is None:
54
56
  _configuration = Configuration()
@@ -59,6 +61,7 @@ class PartCount(object):
59
61
  self._Count = None
60
62
  self._LastUpdateDateUtc = None
61
63
  self._LastUpdateUser = None
64
+ self._ClassTags = None
62
65
  self.discriminator = None
63
66
 
64
67
  self.PartParentId = PartParentId
@@ -68,6 +71,8 @@ class PartCount(object):
68
71
  self.LastUpdateDateUtc = LastUpdateDateUtc
69
72
  if LastUpdateUser is not None:
70
73
  self.LastUpdateUser = LastUpdateUser
74
+ if ClassTags is not None:
75
+ self.ClassTags = ClassTags
71
76
 
72
77
  @property
73
78
  def PartParentId(self):
@@ -190,6 +195,29 @@ class PartCount(object):
190
195
 
191
196
  self._LastUpdateUser = LastUpdateUser
192
197
 
198
+ @property
199
+ def ClassTags(self):
200
+ """Gets the ClassTags of this PartCount. # noqa: E501
201
+
202
+ Les tags contenant les valeurs des classes dérivées possibles pour le part count # noqa: E501
203
+
204
+ :return: The ClassTags of this PartCount. # noqa: E501
205
+ :rtype: str
206
+ """
207
+ return self._ClassTags
208
+
209
+ @ClassTags.setter
210
+ def ClassTags(self, ClassTags):
211
+ """Sets the ClassTags of this PartCount.
212
+
213
+ Les tags contenant les valeurs des classes dérivées possibles pour le part count # noqa: E501
214
+
215
+ :param ClassTags: The ClassTags of this PartCount. # noqa: E501
216
+ :type: str
217
+ """
218
+
219
+ self._ClassTags = ClassTags
220
+
193
221
  def to_dict(self):
194
222
  """Returns the model properties as a dict"""
195
223
  result = {}
@@ -469,7 +469,7 @@ class Session(object):
469
469
  def DefaultAssemblies(self):
470
470
  """Gets the DefaultAssemblies of this Session. # noqa: E501
471
471
 
472
- List of the default Assemblies used to create the first session's run. You have to specify one assemblies by target. # noqa: E501
472
+ List of the default Assemblies used to create the first session's run. You must specify one assemblies by target. # noqa: E501
473
473
 
474
474
  :return: The DefaultAssemblies of this Session. # noqa: E501
475
475
  :rtype: list[str]
@@ -480,7 +480,7 @@ class Session(object):
480
480
  def DefaultAssemblies(self, DefaultAssemblies):
481
481
  """Sets the DefaultAssemblies of this Session.
482
482
 
483
- List of the default Assemblies used to create the first session's run. You have to specify one assemblies by target. # noqa: E501
483
+ List of the default Assemblies used to create the first session's run. You must specify one assemblies by target. # noqa: E501
484
484
 
485
485
  :param DefaultAssemblies: The DefaultAssemblies of this Session. # noqa: E501
486
486
  :type: list[str]
@@ -405,7 +405,7 @@ class Target(object):
405
405
  def AutoGenerateAssemblyEventType(self):
406
406
  """Gets the AutoGenerateAssemblyEventType of this Target. # noqa: E501
407
407
 
408
- List of event types separated with ; for which auto generate assembly is allowed. If empty, all the event types are allowed. Example: Race;Test # noqa: E501
408
+ List of event types separated with ; for which auto-generate assembly is allowed. If empty, all the event types are allowed. Example: Race;Test # noqa: E501
409
409
 
410
410
  :return: The AutoGenerateAssemblyEventType of this Target. # noqa: E501
411
411
  :rtype: str
@@ -416,7 +416,7 @@ class Target(object):
416
416
  def AutoGenerateAssemblyEventType(self, AutoGenerateAssemblyEventType):
417
417
  """Sets the AutoGenerateAssemblyEventType of this Target.
418
418
 
419
- List of event types separated with ; for which auto generate assembly is allowed. If empty, all the event types are allowed. Example: Race;Test # noqa: E501
419
+ List of event types separated with ; for which auto-generate assembly is allowed. If empty, all the event types are allowed. Example: Race;Test # noqa: E501
420
420
 
421
421
  :param AutoGenerateAssemblyEventType: The AutoGenerateAssemblyEventType of this Target. # noqa: E501
422
422
  :type: str
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes