/// <summary> /// Initializes a new instance of the <see cref="ChangeDto" /> class. /// </summary> /// <param name="id">id.</param> /// <param name="version">version.</param> /// <param name="internalVersion">internalVersion.</param> /// <param name="username">username.</param> /// <param name="date">date.</param> /// <param name="registrationDate">registrationDate.</param> /// <param name="personal">personal.</param> /// <param name="href">href.</param> /// <param name="webUrl">webUrl.</param> /// <param name="comment">comment.</param> /// <param name="user">user.</param> /// <param name="files">files.</param> /// <param name="vcsRootInstance">vcsRootInstance.</param> /// <param name="parentChanges">parentChanges.</param> /// <param name="parentRevisions">parentRevisions.</param> /// <param name="attributes">attributes.</param> /// <param name="storesProjectSettings">storesProjectSettings.</param> /// <param name="locator">locator.</param> public ChangeDto(long?id = default(long?), string version = default(string), string internalVersion = default(string), string username = default(string), string date = default(string), string registrationDate = default(string), bool?personal = default(bool?), string href = default(string), string webUrl = default(string), string comment = default(string), UserDto user = default(UserDto), FileChangesDto files = default(FileChangesDto), VcsRootInstanceDto vcsRootInstance = default(VcsRootInstanceDto), ChangesDto parentChanges = default(ChangesDto), ItemsDto parentRevisions = default(ItemsDto), PropertiesDto attributes = default(PropertiesDto), bool?storesProjectSettings = default(bool?), string locator = default(string)) { this.Id = id; this.Version = version; this.InternalVersion = internalVersion; this.Username = username; this.Date = date; this.RegistrationDate = registrationDate; this.Personal = personal; this.Href = href; this.WebUrl = webUrl; this.Comment = comment; this.User = user; this.Files = files; this.VcsRootInstance = vcsRootInstance; this.ParentChanges = parentChanges; this.ParentRevisions = parentRevisions; this.Attributes = attributes; this.StoresProjectSettings = storesProjectSettings; 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; }
/// <summary> /// Initializes a new instance of the <see cref="VcsRootInstanceDto" /> class. /// </summary> /// <param name="id">id.</param> /// <param name="vcsRootId">vcsRootId.</param> /// <param name="vcsRootInternalId">vcsRootInternalId.</param> /// <param name="name">name.</param> /// <param name="vcsName">vcsName.</param> /// <param name="modificationCheckInterval">modificationCheckInterval.</param> /// <param name="commitHookMode">commitHookMode.</param> /// <param name="lastVersion">lastVersion.</param> /// <param name="lastVersionInternal">lastVersionInternal.</param> /// <param name="href">href.</param> /// <param name="vcsRoot">vcsRoot.</param> /// <param name="status">status.</param> /// <param name="repositoryState">repositoryState.</param> /// <param name="properties">properties.</param> /// <param name="repositoryIdStrings">repositoryIdStrings.</param> /// <param name="projectLocator">projectLocator.</param> public VcsRootInstanceDto(string id = default(string), string vcsRootId = default(string), string vcsRootInternalId = default(string), string name = default(string), string vcsName = default(string), int?modificationCheckInterval = default(int?), bool?commitHookMode = default(bool?), string lastVersion = default(string), string lastVersionInternal = default(string), string href = default(string), VcsRootDto vcsRoot = default(VcsRootDto), VcsStatusDto status = default(VcsStatusDto), RepositoryStateDto repositoryState = default(RepositoryStateDto), PropertiesDto properties = default(PropertiesDto), ItemsDto repositoryIdStrings = default(ItemsDto), string projectLocator = default(string)) { this.Id = id; this.VcsRootId = vcsRootId; this.VcsRootInternalId = vcsRootInternalId; this.Name = name; this.VcsName = vcsName; this.ModificationCheckInterval = modificationCheckInterval; this.CommitHookMode = commitHookMode; this.LastVersion = lastVersion; this.LastVersionInternal = lastVersionInternal; this.Href = href; this.VcsRoot = vcsRoot; this.Status = status; this.RepositoryState = repositoryState; this.Properties = properties; this.RepositoryIdStrings = repositoryIdStrings; this.ProjectLocator = projectLocator; }