C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
CandidateResultsList.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Runtime.Serialization;
4
6{
9 [Obsolete("2018-04-23: This class is used for the results of the OptimizationView.result " +
10 "endpoint, which is deprecated. Please use the results at the " +
11 "OptimizationView.candidates endpoint instead.")]
13 {
14 #region Public Properties
16 [DataMember(Order = 1)]
17 public List<Candidate> candidates { get; set; }
18 #endregion Public Properties
19 }
20}
Base class used by all types and resources.
Definition APIType.cs:8
The structure returned by the results endpoint that contains candidates solutions to the optimization...
List< Candidate > candidates
The list of candidates this result consists of.