private Pipeline(string Class, string Organization, string Name, string DisplayName, string FullName, int?WeatherScore, int?EstimatedDurationInMillis, PipelinelatestRun LatestRun) { this.Class = Class; this.Organization = Organization; this.Name = Name; this.DisplayName = DisplayName; this.FullName = FullName; this.WeatherScore = WeatherScore; this.EstimatedDurationInMillis = EstimatedDurationInMillis; this.LatestRun = LatestRun; }
/// <summary> /// Sets value for Pipeline.LatestRun property. /// </summary> /// <param name="value">LatestRun</param> public PipelineBuilder LatestRun(PipelinelatestRun value) { _LatestRun = value; return(this); }