/// <summary> /// Updates an existing template with the specified ID /// </summary> /// <param name="id">ID of template to update</param> /// <param name="data"></param> /// <returns>Task of ApiResponse (TemplateResponseSingle)</returns> public async System.Threading.Tasks.Task<ApiResponse<TemplateResponseSingle>> EditTemplateAsyncWithHttpInfo (long? id, Template data) { // verify the required parameter 'id' is set if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling EditTemplate"); // verify the required parameter 'data' is set if (data == null) throw new ApiException(400, "Missing required parameter 'data' when calling EditTemplate"); var path_ = "/templates/{id}"; var pathParams = new Dictionary<String, String>(); var queryParams = new Dictionary<String, String>(); var headerParams = new Dictionary<String, String>(); var formParams = new Dictionary<String, String>(); var fileParams = new Dictionary<String, FileParameter>(); Object postBody = null; // to determine the Content-Type header String[] httpContentTypes = new String[] { "application/json" }; String httpContentType = Configuration.ApiClient.SelectHeaderContentType(httpContentTypes); // to determine the Accept header String[] httpHeaderAccepts = new String[] { "application/json" }; String httpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(httpHeaderAccepts); if (httpHeaderAccept != null) headerParams.Add("Accept", httpHeaderAccept); // set "format" to json by default // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json pathParams.Add("format", "json"); if (id != null) pathParams.Add("id", Configuration.ApiClient.ParameterToString(id)); // path parameter postBody = Configuration.ApiClient.Serialize(data); // http body (model) parameter // authentication (jwt) required var apiKeyValue = Configuration.GetApiKeyWithPrefix("Authorization"); if (!String.IsNullOrEmpty(apiKeyValue)) { headerParams["Authorization"] = apiKeyValue; } // make the HTTP request IRestResponse response = (IRestResponse) await Configuration.ApiClient.CallApiAsync(path_, Method.PATCH, queryParams, postBody, headerParams, formParams, fileParams, pathParams, httpContentType); int statusCode = (int) response.StatusCode; if (statusCode >= 400) throw new ApiException (statusCode, "Error calling EditTemplate: " + response.Content, response.Content); else if (statusCode == 0) throw new ApiException (statusCode, "Error calling EditTemplate: " + response.ErrorMessage, response.ErrorMessage); return new ApiResponse<TemplateResponseSingle>(statusCode, response.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (TemplateResponseSingle) Configuration.ApiClient.Deserialize(response, typeof(TemplateResponseSingle))); }
/// <summary> /// Updates an existing template with the specified ID /// </summary> /// <param name="id">ID of template to update</param> /// <param name="data"></param> /// <returns>TemplateResponseSingle</returns> public TemplateResponseSingle EditTemplate (long? id, Template data) { ApiResponse<TemplateResponseSingle> response = EditTemplateWithHttpInfo(id, data); return response.Data; }
/// <summary> /// Updates an existing template with the specified ID /// </summary> /// <param name="id">ID of template to update</param> /// <param name="data"></param> /// <returns>Task of TemplateResponseSingle</returns> public async System.Threading.Tasks.Task<TemplateResponseSingle> EditTemplateAsync (long? id, Template data) { ApiResponse<TemplateResponseSingle> response = await EditTemplateAsyncWithHttpInfo(id, data); return response.Data; }
/// <summary> /// Creates a new template /// </summary> /// <param name="data"></param> /// <returns>TemplateResponseSingle</returns> public TemplateResponseSingle AddTemplate (Template data) { ApiResponse<TemplateResponseSingle> response = AddTemplateWithHttpInfo(data); return response.Data; }
/// <summary> /// Creates a new template /// </summary> /// <param name="data"></param> /// <returns>Task of TemplateResponseSingle</returns> public async System.Threading.Tasks.Task<TemplateResponseSingle> AddTemplateAsync (Template data) { ApiResponse<TemplateResponseSingle> response = await AddTemplateAsyncWithHttpInfo(data); return response.Data; }
public void Init() { instance = new Template(); }
/// <summary> /// Updates an existing template with the specified ID /// </summary> /// <exception cref="Squiggle.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="id">ID of template to update</param> /// <param name="data"></param> /// <returns>ApiResponse of Template</returns> public ApiResponse<Template> EditTemplateWithHttpInfo(long? id, Template data) { // verify the required parameter 'id' is set if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling DefaultApi->EditTemplate"); // verify the required parameter 'data' is set if (data == null) throw new ApiException(400, "Missing required parameter 'data' when calling DefaultApi->EditTemplate"); var localVarPath = "/templates/{id}"; var localVarPathParams = new Dictionary<String, String>(); var localVarQueryParams = new Dictionary<String, String>(); var localVarHeaderParams = new Dictionary<String, String>(Configuration.DefaultHeader); var localVarFormParams = new Dictionary<String, String>(); var localVarFileParams = new Dictionary<String, FileParameter>(); Object localVarPostBody = null; // to determine the Content-Type header String[] localVarHttpContentTypes = new String[] { "application/json" }; String localVarHttpContentType = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "application/json" }; String localVarHttpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); // set "format" to json by default // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json localVarPathParams.Add("format", "json"); if (id != null) localVarPathParams.Add("id", Configuration.ApiClient.ParameterToString(id)); // path parameter if (data != null && data.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(data); // http body (model) parameter } else { localVarPostBody = data; // byte array } // authentication (jwt) required if (!String.IsNullOrEmpty(Configuration.GetApiKeyWithPrefix("Authorization"))) { localVarHeaderParams["Authorization"] = Configuration.GetApiKeyWithPrefix("Authorization"); } // make the HTTP request IRestResponse localVarResponse = (IRestResponse) Configuration.ApiClient.CallApi(localVarPath, Method.PATCH, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int) localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("EditTemplate", localVarResponse); if (exception != null) throw exception; } return new ApiResponse<Template>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (Template) Configuration.ApiClient.Deserialize(localVarResponse, typeof(Template))); }
/// <summary> /// Updates an existing template with the specified ID /// </summary> /// <exception cref="Squiggle.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="id">ID of template to update</param> /// <param name="data"></param> /// <returns>Template</returns> public Template EditTemplate(long? id, Template data) { ApiResponse<Template> localVarResponse = EditTemplateWithHttpInfo(id, data); return localVarResponse.Data; }
/// <summary> /// Creates a new template /// </summary> /// <exception cref="Squiggle.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="data"></param> /// <returns>Template</returns> public Template AddTemplate(Template data) { ApiResponse<Template> localVarResponse = AddTemplateWithHttpInfo(data); return localVarResponse.Data; }
/// <summary> /// Updates an existing template with the specified ID /// </summary> /// <param name="id">ID of template to update</param> /// <param name="data"></param> /// <returns>TemplateResponseSingle</returns> public TemplateResponseSingle EditTemplate (long? id, Template data) { // verify the required parameter 'id' is set if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling EditTemplate"); // verify the required parameter 'data' is set if (data == null) throw new ApiException(400, "Missing required parameter 'data' when calling EditTemplate"); var path = "/templates/{id}"; path = path.Replace("{format}", "json"); path = path.Replace("{" + "id" + "}", ApiClient.ParameterToString(id)); var queryParams = new Dictionary<String, String>(); var headerParams = new Dictionary<String, String>(); var formParams = new Dictionary<String, String>(); var fileParams = new Dictionary<String, FileParameter>(); String postBody = null; postBody = ApiClient.Serialize(data); // http body (model) parameter // authentication setting, if any String[] authSettings = new String[] { "jwt" }; // make the HTTP request IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.PATCH, queryParams, postBody, headerParams, formParams, fileParams, authSettings); if (((int)response.StatusCode) >= 400) throw new ApiException ((int)response.StatusCode, "Error calling EditTemplate: " + response.Content, response.Content); else if (((int)response.StatusCode) == 0) throw new ApiException ((int)response.StatusCode, "Error calling EditTemplate: " + response.ErrorMessage, response.ErrorMessage); return (TemplateResponseSingle) ApiClient.Deserialize(response.Content, typeof(TemplateResponseSingle), response.Headers); }