putVariablesIDWithHttpInfo method
Replace a variable
Note: This method returns the HTTP Response
.
Parameters:
Implementation
Future<Response> putVariablesIDWithHttpInfo(
String variableID,
Variable variable, {
String? zapTraceSpan,
}) async {
final path =
r'/variables/{variableID}'.replaceAll('{variableID}', variableID);
// ignore: prefer_final_locals
Object? postBody = variable;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
if (zapTraceSpan != null) {
headerParams[r'Zap-Trace-Span'] = parameterToString(zapTraceSpan);
}
const authNames = <String>[
'BasicAuthentication',
'QuerystringAuthentication',
'TokenAuthentication'
];
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'PUT',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes[0],
authNames,
);
}