CopyProjectConfig Data Type

Config vo to tell what options/choices should be used when copying a project

Namespace
http://www.visionproject.se/service/VisionProjectService-v2/type
Schema
type.xsd
Properties
name data type type namespace min/max occurs constraints description
copyBuildHistory boolean element 1/1 required Should all build history be copied?
copyDocuments boolean element 1/1 required Should the documents/files be copied?
copyForums boolean element 1/1 required Should the forums be copied?
copyIssueDocuments boolean element 1/1 required  
copyIssues boolean element 1/1 required  
copyKnowledgeBase boolean element 1/1 required Should the knowledge base be copied?
copyProjectDocuments boolean element 1/1 required Should all the documents on the project be copied as well
copySettingsOnly boolean element 1/1 required If only settings should be copied (ProjectInfo + ProjectSettings). If set to true, then all other flags will be ignored
copySupportCenter boolean element 1/1 required Should support center be copied?
copyUserAccess boolean element 1/1 required Should all user access be copied?
copyVersions boolean element 1/1 required Should the project versions/releases be copied as well?
newIssueKeyPrefix string element 0/1   The new issue key prefix, set this unless you want to use the source project's issuekeyprefix + "-copy"
newProjectCategoryId int element 1/1 required If the project should be moved to another category/folder
newProjectName string element 0/1   The new project name
primaryKey int element 1/1 required The primary key for the project to be copied
projectStartDate dateTime element 0/1    
useRelativeDates boolean element 1/1 required  

Example

<c----- xmlns="http://www.visionproject.se/service/VisionProjectService-v2/type">
  <newProjectName>...</newProjectName>
  <newProjectCategoryId>...</newProjectCategoryId>
  <newIssueKeyPrefix>...</newIssueKeyPrefix>
  <copyDocuments>...</copyDocuments>
  <copyForums>...</copyForums>
  <copyKnowledgeBase>...</copyKnowledgeBase>
  <copyBuildHistory>...</copyBuildHistory>
  <copyProjectDocuments>...</copyProjectDocuments>
  <copySettingsOnly>...</copySettingsOnly>
  <primaryKey>...</primaryKey>
  <copyVersions>...</copyVersions>
  <copyUserAccess>...</copyUserAccess>
  <copySupportCenter>...</copySupportCenter>
  <copyIssues>...</copyIssues>
  <copyIssueDocuments>...</copyIssueDocuments>
  <useRelativeDates>...</useRelativeDates>
  <projectStartDate>...</projectStartDate>
</c----->