Exemple #1
0
        public virtual IActionResult MarketIndex([FromBody] InputMarketIndex marketIndex)
        {
            //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(OutputMarketIndex));
            //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  \"date\" : \"2020-10-07T00:00:00+0000\",\n  \"symbol\" : \"DJI.INDX\",\n  \"exchange\" : \"INDX\",\n  \"open\" : 73.84,\n  \"high\" : 74.32,\n  \"low\" : 72.245,\n  \"close\" : 72.7,\n  \"volume\" : 15151304,\n  \"adj_open\" : 73.84,\n  \"adj_high\" : 74.32,\n  \"adj_low\" : 72.245,\n  \"adj_close\" : 72.7,\n  \"adj_volume\" : 15151304\n}";

            var example = exampleJson != null
            ? JsonConvert.DeserializeObject <OutputMarketIndex>(exampleJson)
            : default(OutputMarketIndex);

            //TODO: Change the data returned
            return(new ObjectResult(example));
        }
Exemple #2
0
        /// <summary>
        /// Finance - Market index Get current and historical market index information
        /// </summary>
        /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="marketIndex"> (optional)</param>
        /// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
        /// <returns>Task of ApiResponse (OutputMarketIndex)</returns>
        public async System.Threading.Tasks.Task <Org.OpenAPITools.Client.ApiResponse <OutputMarketIndex> > MarketIndexWithHttpInfoAsync(InputMarketIndex marketIndex = default(InputMarketIndex), 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 = marketIndex;

            // 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 <OutputMarketIndex>("/MarketIndex", localVarRequestOptions, this.Configuration, cancellationToken).ConfigureAwait(false);

            if (this.ExceptionFactory != null)
            {
                Exception _exception = this.ExceptionFactory("MarketIndex", localVarResponse);
                if (_exception != null)
                {
                    throw _exception;
                }
            }

            return(localVarResponse);
        }
Exemple #3
0
        /// <summary>
        /// Finance - Market index Get current and historical market index information
        /// </summary>
        /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="marketIndex"> (optional)</param>
        /// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
        /// <returns>Task of OutputMarketIndex</returns>
        public async System.Threading.Tasks.Task <OutputMarketIndex> MarketIndexAsync(InputMarketIndex marketIndex = default(InputMarketIndex), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
        {
            Org.OpenAPITools.Client.ApiResponse <OutputMarketIndex> localVarResponse = await MarketIndexWithHttpInfoAsync(marketIndex, cancellationToken).ConfigureAwait(false);

            return(localVarResponse.Data);
        }
Exemple #4
0
 /// <summary>
 /// Finance - Market index Get current and historical market index information
 /// </summary>
 /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="marketIndex"> (optional)</param>
 /// <returns>OutputMarketIndex</returns>
 public OutputMarketIndex MarketIndex(InputMarketIndex marketIndex = default(InputMarketIndex))
 {
     Org.OpenAPITools.Client.ApiResponse <OutputMarketIndex> localVarResponse = MarketIndexWithHttpInfo(marketIndex);
     return(localVarResponse.Data);
 }