/// <summary> /// Initializes a new instance of the <see cref="BuildTypeDto" /> class. /// </summary> /// <param name="id">id.</param> /// <param name="internalId">internalId.</param> /// <param name="name">name.</param> /// <param name="templateFlag">templateFlag.</param> /// <param name="type">type.</param> /// <param name="paused">paused.</param> /// <param name="uuid">uuid.</param> /// <param name="description">description.</param> /// <param name="projectName">projectName.</param> /// <param name="projectId">projectId.</param> /// <param name="projectInternalId">projectInternalId.</param> /// <param name="href">href.</param> /// <param name="webUrl">webUrl.</param> /// <param name="inherited">inherited.</param> /// <param name="links">links.</param> /// <param name="project">project.</param> /// <param name="templates">templates.</param> /// <param name="template">template.</param> /// <param name="vcsRootEntries">vcsRootEntries.</param> /// <param name="settings">settings.</param> /// <param name="parameters">parameters.</param> /// <param name="steps">steps.</param> /// <param name="features">features.</param> /// <param name="triggers">triggers.</param> /// <param name="snapshotDependencies">snapshotDependencies.</param> /// <param name="artifactDependencies">artifactDependencies.</param> /// <param name="agentRequirements">agentRequirements.</param> /// <param name="branches">branches.</param> /// <param name="builds">builds.</param> /// <param name="investigations">investigations.</param> /// <param name="compatibleAgents">compatibleAgents.</param> /// <param name="vcsRootInstances">vcsRootInstances.</param> /// <param name="locator">locator.</param> public BuildTypeDto(string id = default(string), string internalId = default(string), string name = default(string), bool?templateFlag = default(bool?), string type = default(string), bool?paused = default(bool?), string uuid = default(string), string description = default(string), string projectName = default(string), string projectId = default(string), string projectInternalId = default(string), string href = default(string), string webUrl = default(string), bool?inherited = default(bool?), LinksDto links = default(LinksDto), ProjectDto project = default(ProjectDto), BuildTypesDto templates = default(BuildTypesDto), BuildTypeDto template = default(BuildTypeDto), VcsRootEntriesDto vcsRootEntries = default(VcsRootEntriesDto), PropertiesDto settings = default(PropertiesDto), PropertiesDto parameters = default(PropertiesDto), StepsDto steps = default(StepsDto), FeaturesDto features = default(FeaturesDto), TriggersDto triggers = default(TriggersDto), SnapshotDependenciesDto snapshotDependencies = default(SnapshotDependenciesDto), ArtifactDependenciesDto artifactDependencies = default(ArtifactDependenciesDto), AgentRequirementsDto agentRequirements = default(AgentRequirementsDto), BranchesDto branches = default(BranchesDto), BuildsDto builds = default(BuildsDto), InvestigationsDto investigations = default(InvestigationsDto), AgentsDto compatibleAgents = default(AgentsDto), VcsRootInstancesDto vcsRootInstances = default(VcsRootInstancesDto), string locator = default(string)) { this.Id = id; this.InternalId = internalId; this.Name = name; this.TemplateFlag = templateFlag; this.Type = type; this.Paused = paused; this.Uuid = uuid; this.Description = description; this.ProjectName = projectName; this.ProjectId = projectId; this.ProjectInternalId = projectInternalId; this.Href = href; this.WebUrl = webUrl; this.Inherited = inherited; this.Links = links; this.Project = project; this.Templates = templates; this.Template = template; this.VcsRootEntries = vcsRootEntries; this.Settings = settings; this.Parameters = parameters; this.Steps = steps; this.Features = features; this.Triggers = triggers; this.SnapshotDependencies = snapshotDependencies; this.ArtifactDependencies = artifactDependencies; this.AgentRequirements = agentRequirements; this.Branches = branches; this.Builds = builds; this.Investigations = investigations; this.CompatibleAgents = compatibleAgents; this.VcsRootInstances = vcsRootInstances; this.Locator = locator; }
/// <summary> /// Initializes a new instance of the <see cref="VcsRootDto" /> class. /// </summary> /// <param name="id">id.</param> /// <param name="internalId">internalId.</param> /// <param name="uuid">uuid.</param> /// <param name="name">name.</param> /// <param name="vcsName">vcsName.</param> /// <param name="modificationCheckInterval">modificationCheckInterval.</param> /// <param name="href">href.</param> /// <param name="project">project.</param> /// <param name="properties">properties.</param> /// <param name="vcsRootInstances">vcsRootInstances.</param> /// <param name="repositoryIdStrings">repositoryIdStrings.</param> /// <param name="projectLocator">projectLocator.</param> /// <param name="locator">locator.</param> public VcsRootDto(string id = default(string), string internalId = default(string), string uuid = default(string), string name = default(string), string vcsName = default(string), int?modificationCheckInterval = default(int?), string href = default(string), ProjectDto project = default(ProjectDto), PropertiesDto properties = default(PropertiesDto), VcsRootInstancesDto vcsRootInstances = default(VcsRootInstancesDto), ItemsDto repositoryIdStrings = default(ItemsDto), string projectLocator = default(string), string locator = default(string)) { this.Id = id; this.InternalId = internalId; this.Uuid = uuid; this.Name = name; this.VcsName = vcsName; this.ModificationCheckInterval = modificationCheckInterval; this.Href = href; this.Project = project; this.Properties = properties; this.VcsRootInstances = vcsRootInstances; this.RepositoryIdStrings = repositoryIdStrings; this.ProjectLocator = projectLocator; this.Locator = locator; }