teamdbapi 3.0.0__py3-none-any.whl → 3.3.0__py3-none-any.whl

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 (43) hide show
  1. teamdbapi/__init__.py +15 -0
  2. teamdbapi/api/__init__.py +1 -0
  3. teamdbapi/api/assembly_api.py +4 -4
  4. teamdbapi/api/component_api.py +117 -0
  5. teamdbapi/api/edit_api.py +89 -0
  6. teamdbapi/api/import_export_api.py +12 -12
  7. teamdbapi/api/issue_api.py +1537 -0
  8. teamdbapi/api/lap_report_api.py +2 -2
  9. teamdbapi/api/part_api.py +481 -0
  10. teamdbapi/api/report_api.py +2 -2
  11. teamdbapi/api/revision_api.py +111 -6
  12. teamdbapi/api/value_field_api.py +2 -2
  13. teamdbapi/models/__init__.py +14 -0
  14. teamdbapi/models/add_part_car_parameter_arg.py +396 -0
  15. teamdbapi/models/car_parameters_context.py +31 -3
  16. teamdbapi/models/compare_options.py +2 -2
  17. teamdbapi/models/component.py +87 -3
  18. teamdbapi/models/file_revision_info.py +199 -0
  19. teamdbapi/models/import_parameters_args.py +2 -2
  20. teamdbapi/models/import_revisions_args.py +173 -0
  21. teamdbapi/models/import_revisions_info.py +197 -0
  22. teamdbapi/models/import_revisions_results.py +170 -0
  23. teamdbapi/models/issue.py +674 -0
  24. teamdbapi/models/issue_custom_field_value.py +319 -0
  25. teamdbapi/models/issue_priority.py +227 -0
  26. teamdbapi/models/issue_project.py +229 -0
  27. teamdbapi/models/issue_sector.py +199 -0
  28. teamdbapi/models/issue_status.py +284 -0
  29. teamdbapi/models/issue_type.py +199 -0
  30. teamdbapi/models/issue_workflow.py +199 -0
  31. teamdbapi/models/lap_report_options.py +2 -2
  32. teamdbapi/models/parameter_cross_table.py +4 -4
  33. teamdbapi/models/part.py +31 -3
  34. teamdbapi/models/part_car_parameters.py +561 -0
  35. teamdbapi/models/revision.py +37 -9
  36. teamdbapi/models/revision_value.py +31 -3
  37. teamdbapi/models/script.py +2 -2
  38. teamdbapi/models/target.py +4 -4
  39. teamdbapi/models/version.py +4 -4
  40. {teamdbapi-3.0.0.dist-info → teamdbapi-3.3.0.dist-info}/METADATA +3 -3
  41. {teamdbapi-3.0.0.dist-info → teamdbapi-3.3.0.dist-info}/RECORD +43 -28
  42. {teamdbapi-3.0.0.dist-info → teamdbapi-3.3.0.dist-info}/LICENSE +0 -0
  43. {teamdbapi-3.0.0.dist-info → teamdbapi-3.3.0.dist-info}/WHEEL +0 -0
teamdbapi/__init__.py CHANGED
@@ -25,6 +25,7 @@ from teamdbapi.api.event_api import EventApi
25
25
  from teamdbapi.api.fixed_field_api import FixedFieldApi
26
26
  from teamdbapi.api.group_api import GroupApi
27
27
  from teamdbapi.api.import_export_api import ImportExportApi
28
+ from teamdbapi.api.issue_api import IssueApi
28
29
  from teamdbapi.api.lap_api import LapApi
29
30
  from teamdbapi.api.lap_report_api import LapReportApi
30
31
  from teamdbapi.api.model_field_api import ModelFieldApi
@@ -53,6 +54,7 @@ from teamdbapi.api.version_api import VersionApi
53
54
  from teamdbapi.api_client import ApiClient
54
55
  from teamdbapi.configuration import Configuration
55
56
  # import models into sdk package
57
+ from teamdbapi.models.add_part_car_parameter_arg import AddPartCarParameterArg
56
58
  from teamdbapi.models.assembly import Assembly
57
59
  from teamdbapi.models.bleed_adjustment import BleedAdjustment
58
60
  from teamdbapi.models.calibration import Calibration
@@ -67,10 +69,22 @@ from teamdbapi.models.couple_guid_text import CoupleGuidText
67
69
  from teamdbapi.models.criteria import Criteria
68
70
  from teamdbapi.models.criteria_value import CriteriaValue
69
71
  from teamdbapi.models.event import Event
72
+ from teamdbapi.models.file_revision_info import FileRevisionInfo
70
73
  from teamdbapi.models.fixed_field import FixedField
71
74
  from teamdbapi.models.group import Group
72
75
  from teamdbapi.models.import_parameters_args import ImportParametersArgs
73
76
  from teamdbapi.models.import_parameters_results import ImportParametersResults
77
+ from teamdbapi.models.import_revisions_args import ImportRevisionsArgs
78
+ from teamdbapi.models.import_revisions_info import ImportRevisionsInfo
79
+ from teamdbapi.models.import_revisions_results import ImportRevisionsResults
80
+ from teamdbapi.models.issue import Issue
81
+ from teamdbapi.models.issue_custom_field_value import IssueCustomFieldValue
82
+ from teamdbapi.models.issue_priority import IssuePriority
83
+ from teamdbapi.models.issue_project import IssueProject
84
+ from teamdbapi.models.issue_sector import IssueSector
85
+ from teamdbapi.models.issue_status import IssueStatus
86
+ from teamdbapi.models.issue_type import IssueType
87
+ from teamdbapi.models.issue_workflow import IssueWorkflow
74
88
  from teamdbapi.models.item_value import ItemValue
75
89
  from teamdbapi.models.item_value_key import ItemValueKey
76
90
  from teamdbapi.models.lap import Lap
@@ -83,6 +97,7 @@ from teamdbapi.models.notes_context import NotesContext
83
97
  from teamdbapi.models.parameter import Parameter
84
98
  from teamdbapi.models.parameter_cross_table import ParameterCrossTable
85
99
  from teamdbapi.models.part import Part
100
+ from teamdbapi.models.part_car_parameters import PartCarParameters
86
101
  from teamdbapi.models.part_count import PartCount
87
102
  from teamdbapi.models.problem_details import ProblemDetails
88
103
  from teamdbapi.models.revision import Revision
teamdbapi/api/__init__.py CHANGED
@@ -13,6 +13,7 @@ from teamdbapi.api.event_api import EventApi
13
13
  from teamdbapi.api.fixed_field_api import FixedFieldApi
14
14
  from teamdbapi.api.group_api import GroupApi
15
15
  from teamdbapi.api.import_export_api import ImportExportApi
16
+ from teamdbapi.api.issue_api import IssueApi
16
17
  from teamdbapi.api.lap_api import LapApi
17
18
  from teamdbapi.api.lap_report_api import LapReportApi
18
19
  from teamdbapi.api.model_field_api import ModelFieldApi
@@ -751,7 +751,7 @@ class AssemblyApi(object):
751
751
 
752
752
  :param async_req bool
753
753
  :param str assembly_id: The unique assembly id corresponding to the assembly to export. (required)
754
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : MyFile.m (required)
754
+ :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)
755
755
  :return: bool
756
756
  If the method is called asynchronously,
757
757
  returns the request thread.
@@ -773,7 +773,7 @@ class AssemblyApi(object):
773
773
 
774
774
  :param async_req bool
775
775
  :param str assembly_id: The unique assembly id corresponding to the assembly to export. (required)
776
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : MyFile.m (required)
776
+ :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)
777
777
  :return: bool
778
778
  If the method is called asynchronously,
779
779
  returns the request thread.
@@ -1319,7 +1319,7 @@ class AssemblyApi(object):
1319
1319
  :param str version_id: The version id to which the new assembly will belong
1320
1320
  :param str assembly_name: The assembly name to create
1321
1321
  :param str revision_name: The default revision name used to create the new revisions
1322
- :param str file_path: The file path containing the parameters
1322
+ :param str file_path: The file path containing the parameters. Example: C:/path/myFile.m
1323
1323
  :return: Assembly
1324
1324
  If the method is called asynchronously,
1325
1325
  returns the request thread.
@@ -1343,7 +1343,7 @@ class AssemblyApi(object):
1343
1343
  :param str version_id: The version id to which the new assembly will belong
1344
1344
  :param str assembly_name: The assembly name to create
1345
1345
  :param str revision_name: The default revision name used to create the new revisions
1346
- :param str file_path: The file path containing the parameters
1346
+ :param str file_path: The file path containing the parameters. Example: C:/path/myFile.m
1347
1347
  :return: Assembly
1348
1348
  If the method is called asynchronously,
1349
1349
  returns the request thread.
@@ -840,6 +840,123 @@ class ComponentApi(object):
840
840
  _request_timeout=params.get('_request_timeout'),
841
841
  collection_formats=collection_formats)
842
842
 
843
+ def set_parameter_binding_to_component_group_revision_content(self, component_id, revision_id, sub_component_revision_id, parameter_binding, **kwargs): # noqa: E501
844
+ """[Command] Set the parameter binding to the content of a component group revision for a given sub component unique identifier. # noqa: E501
845
+
846
+ This method makes a synchronous HTTP request by default. To make an
847
+ asynchronous HTTP request, please pass async_req=True
848
+ >>> thread = api.set_parameter_binding_to_component_group_revision_content(component_id, revision_id, sub_component_revision_id, parameter_binding, async_req=True)
849
+ >>> result = thread.get()
850
+
851
+ :param async_req bool
852
+ :param str component_id: The unique identifier of the component group. (required)
853
+ :param str revision_id: The unique identifier of the component group revision. (required)
854
+ :param str sub_component_revision_id: The unique identifier of the sub component to edit the parameter binding (required)
855
+ :param str parameter_binding: The parameter binding value (required)
856
+ :return: None
857
+ If the method is called asynchronously,
858
+ returns the request thread.
859
+ """
860
+ kwargs['_return_http_data_only'] = True
861
+ if kwargs.get('async_req'):
862
+ return self.set_parameter_binding_to_component_group_revision_content_with_http_info(component_id, revision_id, sub_component_revision_id, parameter_binding, **kwargs) # noqa: E501
863
+ else:
864
+ (data) = self.set_parameter_binding_to_component_group_revision_content_with_http_info(component_id, revision_id, sub_component_revision_id, parameter_binding, **kwargs) # noqa: E501
865
+ return data
866
+
867
+ def set_parameter_binding_to_component_group_revision_content_with_http_info(self, component_id, revision_id, sub_component_revision_id, parameter_binding, **kwargs): # noqa: E501
868
+ """[Command] Set the parameter binding to the content of a component group revision for a given sub component unique identifier. # noqa: E501
869
+
870
+ This method makes a synchronous HTTP request by default. To make an
871
+ asynchronous HTTP request, please pass async_req=True
872
+ >>> thread = api.set_parameter_binding_to_component_group_revision_content_with_http_info(component_id, revision_id, sub_component_revision_id, parameter_binding, async_req=True)
873
+ >>> result = thread.get()
874
+
875
+ :param async_req bool
876
+ :param str component_id: The unique identifier of the component group. (required)
877
+ :param str revision_id: The unique identifier of the component group revision. (required)
878
+ :param str sub_component_revision_id: The unique identifier of the sub component to edit the parameter binding (required)
879
+ :param str parameter_binding: The parameter binding value (required)
880
+ :return: None
881
+ If the method is called asynchronously,
882
+ returns the request thread.
883
+ """
884
+
885
+ all_params = ['component_id', 'revision_id', 'sub_component_revision_id', 'parameter_binding'] # noqa: E501
886
+ all_params.append('async_req')
887
+ all_params.append('_return_http_data_only')
888
+ all_params.append('_preload_content')
889
+ all_params.append('_request_timeout')
890
+
891
+ params = locals()
892
+ for key, val in six.iteritems(params['kwargs']):
893
+ if key not in all_params:
894
+ raise TypeError(
895
+ "Got an unexpected keyword argument '%s'"
896
+ " to method set_parameter_binding_to_component_group_revision_content" % key
897
+ )
898
+ params[key] = val
899
+ del params['kwargs']
900
+ # verify the required parameter 'component_id' is set
901
+ if ('component_id' not in params or
902
+ params['component_id'] is None):
903
+ raise ValueError("Missing the required parameter `component_id` when calling `set_parameter_binding_to_component_group_revision_content`") # noqa: E501
904
+ # verify the required parameter 'revision_id' is set
905
+ if ('revision_id' not in params or
906
+ params['revision_id'] is None):
907
+ raise ValueError("Missing the required parameter `revision_id` when calling `set_parameter_binding_to_component_group_revision_content`") # noqa: E501
908
+ # verify the required parameter 'sub_component_revision_id' is set
909
+ if ('sub_component_revision_id' not in params or
910
+ params['sub_component_revision_id'] is None):
911
+ raise ValueError("Missing the required parameter `sub_component_revision_id` when calling `set_parameter_binding_to_component_group_revision_content`") # noqa: E501
912
+ # verify the required parameter 'parameter_binding' is set
913
+ if ('parameter_binding' not in params or
914
+ params['parameter_binding'] is None):
915
+ raise ValueError("Missing the required parameter `parameter_binding` when calling `set_parameter_binding_to_component_group_revision_content`") # noqa: E501
916
+
917
+ collection_formats = {}
918
+
919
+ path_params = {}
920
+ if 'component_id' in params:
921
+ path_params['componentId'] = params['component_id'] # noqa: E501
922
+ if 'revision_id' in params:
923
+ path_params['revisionId'] = params['revision_id'] # noqa: E501
924
+ if 'sub_component_revision_id' in params:
925
+ path_params['subComponentRevisionId'] = params['sub_component_revision_id'] # noqa: E501
926
+ if 'parameter_binding' in params:
927
+ path_params['parameterBinding'] = params['parameter_binding'] # noqa: E501
928
+
929
+ query_params = []
930
+
931
+ header_params = {}
932
+
933
+ form_params = []
934
+ local_var_files = {}
935
+
936
+ body_params = None
937
+ # HTTP header `Accept`
938
+ header_params['Accept'] = self.api_client.select_header_accept(
939
+ ['application/json', 'text/json']) # noqa: E501
940
+
941
+ # Authentication setting
942
+ auth_settings = [] # noqa: E501
943
+
944
+ return self.api_client.call_api(
945
+ '/teamdbapi/v2.0/component/{componentId}/revision/{revisionId}/subComponent/{subComponentRevisionId}/parameterBinding/{parameterBinding}', 'PUT',
946
+ path_params,
947
+ query_params,
948
+ header_params,
949
+ body=body_params,
950
+ post_params=form_params,
951
+ files=local_var_files,
952
+ response_type=None, # noqa: E501
953
+ auth_settings=auth_settings,
954
+ async_req=params.get('async_req'),
955
+ _return_http_data_only=params.get('_return_http_data_only'),
956
+ _preload_content=params.get('_preload_content', True),
957
+ _request_timeout=params.get('_request_timeout'),
958
+ collection_formats=collection_formats)
959
+
843
960
  def update_component_revision(self, component_id, revision_id, **kwargs): # noqa: E501
844
961
  """Update a component revision from it's unique identifiers. # noqa: E501
845
962
 
teamdbapi/api/edit_api.py CHANGED
@@ -137,6 +137,95 @@ class EditApi(object):
137
137
  _request_timeout=params.get('_request_timeout'),
138
138
  collection_formats=collection_formats)
139
139
 
140
+ def get_all_car_parameters_contexts(self, **kwargs): # noqa: E501
141
+ """Get all car parameters contexts in all TeamDB client layouts, or the global context only if the Use Global Context option is active. # noqa: E501
142
+
143
+ This method makes a synchronous HTTP request by default. To make an
144
+ asynchronous HTTP request, please pass async_req=True
145
+ >>> thread = api.get_all_car_parameters_contexts(async_req=True)
146
+ >>> result = thread.get()
147
+
148
+ :param async_req bool
149
+ :param bool include_hidden_layouts: True to include all layouts including hidden ones, False for only the visible ones
150
+ :return: list[CarParametersContext]
151
+ If the method is called asynchronously,
152
+ returns the request thread.
153
+ """
154
+ kwargs['_return_http_data_only'] = True
155
+ if kwargs.get('async_req'):
156
+ return self.get_all_car_parameters_contexts_with_http_info(**kwargs) # noqa: E501
157
+ else:
158
+ (data) = self.get_all_car_parameters_contexts_with_http_info(**kwargs) # noqa: E501
159
+ return data
160
+
161
+ def get_all_car_parameters_contexts_with_http_info(self, **kwargs): # noqa: E501
162
+ """Get all car parameters contexts in all TeamDB client layouts, or the global context only if the Use Global Context option is active. # noqa: E501
163
+
164
+ This method makes a synchronous HTTP request by default. To make an
165
+ asynchronous HTTP request, please pass async_req=True
166
+ >>> thread = api.get_all_car_parameters_contexts_with_http_info(async_req=True)
167
+ >>> result = thread.get()
168
+
169
+ :param async_req bool
170
+ :param bool include_hidden_layouts: True to include all layouts including hidden ones, False for only the visible ones
171
+ :return: list[CarParametersContext]
172
+ If the method is called asynchronously,
173
+ returns the request thread.
174
+ """
175
+
176
+ all_params = ['include_hidden_layouts'] # noqa: E501
177
+ all_params.append('async_req')
178
+ all_params.append('_return_http_data_only')
179
+ all_params.append('_preload_content')
180
+ all_params.append('_request_timeout')
181
+
182
+ params = locals()
183
+ for key, val in six.iteritems(params['kwargs']):
184
+ if key not in all_params:
185
+ raise TypeError(
186
+ "Got an unexpected keyword argument '%s'"
187
+ " to method get_all_car_parameters_contexts" % key
188
+ )
189
+ params[key] = val
190
+ del params['kwargs']
191
+
192
+ collection_formats = {}
193
+
194
+ path_params = {}
195
+
196
+ query_params = []
197
+ if 'include_hidden_layouts' in params:
198
+ query_params.append(('includeHiddenLayouts', params['include_hidden_layouts'])) # noqa: E501
199
+
200
+ header_params = {}
201
+
202
+ form_params = []
203
+ local_var_files = {}
204
+
205
+ body_params = None
206
+ # HTTP header `Accept`
207
+ header_params['Accept'] = self.api_client.select_header_accept(
208
+ ['application/json', 'text/json']) # noqa: E501
209
+
210
+ # Authentication setting
211
+ auth_settings = [] # noqa: E501
212
+
213
+ return self.api_client.call_api(
214
+ '/teamdbapi/v2.0/allCarParametersContext', 'GET',
215
+ path_params,
216
+ query_params,
217
+ header_params,
218
+ body=body_params,
219
+ post_params=form_params,
220
+ files=local_var_files,
221
+ response_type='list[CarParametersContext]', # noqa: E501
222
+ auth_settings=auth_settings,
223
+ async_req=params.get('async_req'),
224
+ _return_http_data_only=params.get('_return_http_data_only'),
225
+ _preload_content=params.get('_preload_content', True),
226
+ _request_timeout=params.get('_request_timeout'),
227
+ collection_formats=collection_formats)
228
+
140
229
  def get_current_car_parameters_selected_context(self, **kwargs): # noqa: E501
141
230
  """Get the current Car Parameters selected context in Parameters Editor view # noqa: E501
142
231
 
@@ -43,7 +43,7 @@ class ImportExportApi(object):
43
43
  :param async_req bool
44
44
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
45
45
  :param str source_id: The Source ID string for which you want to export the data (required)
46
- :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)
46
+ :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
47
  :return: None
48
48
  If the method is called asynchronously,
49
49
  returns the request thread.
@@ -66,7 +66,7 @@ class ImportExportApi(object):
66
66
  :param async_req bool
67
67
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
68
68
  :param str source_id: The Source ID string for which you want to export the data (required)
69
- :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)
69
+ :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
70
  :return: None
71
71
  If the method is called asynchronously,
72
72
  returns the request thread.
@@ -157,7 +157,7 @@ class ImportExportApi(object):
157
157
  :param str lap_id: The lap ID from which perform the export or the empty id 00000000-0000-0000-0000-000000000000 (required)
158
158
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
159
159
  :param str source_id: The Source ID string for which you want to export the data (required)
160
- :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)
160
+ :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
161
  :return: None
162
162
  If the method is called asynchronously,
163
163
  returns the request thread.
@@ -185,7 +185,7 @@ class ImportExportApi(object):
185
185
  :param str lap_id: The lap ID from which perform the export or the empty id 00000000-0000-0000-0000-000000000000 (required)
186
186
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
187
187
  :param str source_id: The Source ID string for which you want to export the data (required)
188
- :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)
188
+ :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
189
  :return: None
190
190
  If the method is called asynchronously,
191
191
  returns the request thread.
@@ -300,7 +300,7 @@ class ImportExportApi(object):
300
300
 
301
301
  :param async_req bool
302
302
  :param str source_path: The source path configured in the teamdb fields that you want to import (required)
303
- :param str input_file_path: The Excel file path you want to import. For example : C:\\path\\MyFile.xlsx (required)
303
+ :param str input_file_path: The Excel file path you want to import. For example : C:/path/MyFile.xlsx (required)
304
304
  :return: None
305
305
  If the method is called asynchronously,
306
306
  returns the request thread.
@@ -322,7 +322,7 @@ class ImportExportApi(object):
322
322
 
323
323
  :param async_req bool
324
324
  :param str source_path: The source path configured in the teamdb fields that you want to import (required)
325
- :param str input_file_path: The Excel file path you want to import. For example : C:\\path\\MyFile.xlsx (required)
325
+ :param str input_file_path: The Excel file path you want to import. For example : C:/path/MyFile.xlsx (required)
326
326
  :return: None
327
327
  If the method is called asynchronously,
328
328
  returns the request thread.
@@ -402,7 +402,7 @@ class ImportExportApi(object):
402
402
  :param async_req bool
403
403
  :param str source_path: The source path configured in the teamdb fields that you want to import (required)
404
404
  :param str sheetname: The sheet name in the file (required)
405
- :param str input_file_path: The Excel file path you want to import. For example : C:\\path\\MyFile.xlsx (required)
405
+ :param str input_file_path: The Excel file path you want to import. For example : C:/path/MyFile.xlsx (required)
406
406
  :return: None
407
407
  If the method is called asynchronously,
408
408
  returns the request thread.
@@ -425,7 +425,7 @@ class ImportExportApi(object):
425
425
  :param async_req bool
426
426
  :param str source_path: The source path configured in the teamdb fields that you want to import (required)
427
427
  :param str sheetname: The sheet name in the file (required)
428
- :param str input_file_path: The Excel file path you want to import. For example : C:\\path\\MyFile.xlsx (required)
428
+ :param str input_file_path: The Excel file path you want to import. For example : C:/path/MyFile.xlsx (required)
429
429
  :return: None
430
430
  If the method is called asynchronously,
431
431
  returns the request thread.
@@ -510,7 +510,7 @@ class ImportExportApi(object):
510
510
 
511
511
  :param async_req bool
512
512
  :param str source_id: The source ID configured in the teamdb fields that you want to import (required)
513
- :param str input_file_path: The XML file path you want to import. For example : C:\\path\\MyFile.xml (required)
513
+ :param str input_file_path: The XML file path you want to import. For example : C:/path/MyFile.xml (required)
514
514
  :return: None
515
515
  If the method is called asynchronously,
516
516
  returns the request thread.
@@ -532,7 +532,7 @@ class ImportExportApi(object):
532
532
 
533
533
  :param async_req bool
534
534
  :param str source_id: The source ID configured in the teamdb fields that you want to import (required)
535
- :param str input_file_path: The XML file path you want to import. For example : C:\\path\\MyFile.xml (required)
535
+ :param str input_file_path: The XML file path you want to import. For example : C:/path/MyFile.xml (required)
536
536
  :return: None
537
537
  If the method is called asynchronously,
538
538
  returns the request thread.
@@ -616,7 +616,7 @@ class ImportExportApi(object):
616
616
  :param str run_id: The run ID to which perform the import or the empty id 00000000-0000-0000-0000-000000000000 (required)
617
617
  :param str lap_id: The lap ID to which perform the import or the empty id 00000000-0000-0000-0000-000000000000 (required)
618
618
  :param str source_id: The source ID configured in the teamdb fields that you want to import (required)
619
- :param str input_file_path: The XML file path you want to import. For example : C:\\path\\MyFile.xml (required)
619
+ :param str input_file_path: The XML file path you want to import. For example : C:/path/MyFile.xml (required)
620
620
  :return: None
621
621
  If the method is called asynchronously,
622
622
  returns the request thread.
@@ -643,7 +643,7 @@ class ImportExportApi(object):
643
643
  :param str run_id: The run ID to which perform the import or the empty id 00000000-0000-0000-0000-000000000000 (required)
644
644
  :param str lap_id: The lap ID to which perform the import or the empty id 00000000-0000-0000-0000-000000000000 (required)
645
645
  :param str source_id: The source ID configured in the teamdb fields that you want to import (required)
646
- :param str input_file_path: The XML file path you want to import. For example : C:\\path\\MyFile.xml (required)
646
+ :param str input_file_path: The XML file path you want to import. For example : C:/path/MyFile.xml (required)
647
647
  :return: None
648
648
  If the method is called asynchronously,
649
649
  returns the request thread.