private PipelineExecutionListRepresentation(int?TotalNumberOfItems, RequestedPageDetails Page, PipelineExecutionListRepresentationEmbedded Embedded, PipelineExecutionListRepresentationLinks Links)
        {
            this.TotalNumberOfItems = TotalNumberOfItems;

            this.Page = Page;

            this.Embedded = Embedded;

            this.Links = Links;
        }
 /// <summary>
 /// Sets value for PipelineExecutionListRepresentation.Page property.
 /// </summary>
 /// <param name="value">Page</param>
 public PipelineExecutionListRepresentationBuilder Page(RequestedPageDetails value)
 {
     _Page = value;
     return(this);
 }