コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiResponseStockExchangeStockPrices" /> class.
 /// </summary>
 /// <param name="StockPrices">The stock prices for all Securities traded on the Stock Exchange on the given date.</param>
 /// <param name="StockExchange">The Stock Exchange resolved from the given identifier.</param>
 /// <param name="NextPage">The token required to request the next page of the data. If null, no further results are available..</param>
 public ApiResponseStockExchangeStockPrices(List <StockPrice> StockPrices = default(List <StockPrice>), StockExchange StockExchange = default(StockExchange), string NextPage = default(string))
 {
     this.StockPrices   = StockPrices;
     this.StockExchange = StockExchange;
     this.NextPage      = NextPage;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiResponseStockExchangeSecurities" /> class.
 /// </summary>
 /// <param name="Securities">The securities traded on the Stock Exchange.</param>
 /// <param name="StockExchange">The Stock Exchange resolved from the given identifier.</param>
 /// <param name="NextPage">The token required to request the next page of the data. If null, no further results are available..</param>
 public ApiResponseStockExchangeSecurities(List <SecuritySummary> Securities = default(List <SecuritySummary>), StockExchange StockExchange = default(StockExchange), string NextPage = default(string))
 {
     this.Securities    = Securities;
     this.StockExchange = StockExchange;
     this.NextPage      = NextPage;
 }