public virtual IActionResult FormatDateTime([FromBody] InputDateTimeFormat dateTimeFormat) { //TODO: Uncomment the next line to return response 200 or use other options such as return this.NotFound(), return this.BadRequest(..), ... // return StatusCode(200, default(OutputString)); //TODO: Uncomment the next line to return response 400 or use other options such as return this.NotFound(), return this.BadRequest(..), ... // return StatusCode(400, default(OutputString)); string exampleJson = null; exampleJson = "{\n \"result\" : \"string\"\n}"; var example = exampleJson != null ? JsonConvert.DeserializeObject <OutputString>(exampleJson) : default(OutputString); //TODO: Change the data returned return(new ObjectResult(example)); }
/// <summary> /// DateTime - Format date and time Create a date/time string in a specific format /// </summary> /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="dateTimeFormat"> (optional)</param> /// <param name="cancellationToken">Cancellation Token to cancel the request.</param> /// <returns>Task of OutputString</returns> public async System.Threading.Tasks.Task <OutputString> FormatDateTimeAsync(InputDateTimeFormat dateTimeFormat = default(InputDateTimeFormat), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { Org.OpenAPITools.Client.ApiResponse <OutputString> localVarResponse = await FormatDateTimeWithHttpInfoAsync(dateTimeFormat, cancellationToken).ConfigureAwait(false); return(localVarResponse.Data); }
/// <summary> /// DateTime - Format date and time Create a date/time string in a specific format /// </summary> /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="dateTimeFormat"> (optional)</param> /// <param name="cancellationToken">Cancellation Token to cancel the request.</param> /// <returns>Task of ApiResponse (OutputString)</returns> public async System.Threading.Tasks.Task <Org.OpenAPITools.Client.ApiResponse <OutputString> > FormatDateTimeWithHttpInfoAsync(InputDateTimeFormat dateTimeFormat = default(InputDateTimeFormat), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { Org.OpenAPITools.Client.RequestOptions localVarRequestOptions = new Org.OpenAPITools.Client.RequestOptions(); String[] _contentTypes = new String[] { "application/json" }; // to determine the Accept header String[] _accepts = new String[] { "application/json" }; var localVarContentType = Org.OpenAPITools.Client.ClientUtils.SelectHeaderContentType(_contentTypes); if (localVarContentType != null) { localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType); } var localVarAccept = Org.OpenAPITools.Client.ClientUtils.SelectHeaderAccept(_accepts); if (localVarAccept != null) { localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept); } localVarRequestOptions.Data = dateTimeFormat; // authentication (apiKeyHeader) required if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("X-IBM-Client-Id"))) { localVarRequestOptions.HeaderParameters.Add("X-IBM-Client-Id", this.Configuration.GetApiKeyWithPrefix("X-IBM-Client-Id")); } // make the HTTP request var localVarResponse = await this.AsynchronousClient.PostAsync <OutputString>("/FormatDateTime", localVarRequestOptions, this.Configuration, cancellationToken).ConfigureAwait(false); if (this.ExceptionFactory != null) { Exception _exception = this.ExceptionFactory("FormatDateTime", localVarResponse); if (_exception != null) { throw _exception; } } return(localVarResponse); }
/// <summary> /// DateTime - Format date and time Create a date/time string in a specific format /// </summary> /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="dateTimeFormat"> (optional)</param> /// <returns>OutputString</returns> public OutputString FormatDateTime(InputDateTimeFormat dateTimeFormat = default(InputDateTimeFormat)) { Org.OpenAPITools.Client.ApiResponse <OutputString> localVarResponse = FormatDateTimeWithHttpInfo(dateTimeFormat); return(localVarResponse.Data); }