Пример #1
0
        private PipelineImpl(string Class, string DisplayName, int?EstimatedDurationInMillis, string FullName, string LatestRun, string Name, string Organization, int?WeatherScore, PipelineImpllinks Links)
        {
            this.Class = Class;

            this.DisplayName = DisplayName;

            this.EstimatedDurationInMillis = EstimatedDurationInMillis;

            this.FullName = FullName;

            this.LatestRun = LatestRun;

            this.Name = Name;

            this.Organization = Organization;

            this.WeatherScore = WeatherScore;

            this.Links = Links;
        }
Пример #2
0
 /// <summary>
 /// Sets value for PipelineImpl.Links property.
 /// </summary>
 /// <param name="value">Links</param>
 public PipelineImplBuilder Links(PipelineImpllinks value)
 {
     _Links = value;
     return(this);
 }