示例#1
0
        private PipelineBranchesitem(string DisplayName, int?EstimatedDurationInMillis, string Name, int?WeatherScore, PipelineBranchesitemlatestRun LatestRun, string Organization, PipelineBranchesitempullRequest PullRequest, int?TotalNumberOfPullRequests, string Class)
        {
            this.DisplayName = DisplayName;

            this.EstimatedDurationInMillis = EstimatedDurationInMillis;

            this.Name = Name;

            this.WeatherScore = WeatherScore;

            this.LatestRun = LatestRun;

            this.Organization = Organization;

            this.PullRequest = PullRequest;

            this.TotalNumberOfPullRequests = TotalNumberOfPullRequests;

            this.Class = Class;
        }
示例#2
0
 /// <summary>
 /// Sets value for PipelineBranchesitem.LatestRun property.
 /// </summary>
 /// <param name="value">LatestRun</param>
 public PipelineBranchesitemBuilder LatestRun(PipelineBranchesitemlatestRun value)
 {
     _LatestRun = value;
     return(this);
 }