示例#1
0
 /// <summary>
 /// Copies the content of a space to antoher space.
 /// </summary>
 /// <param name="sourceSpaceID">The ID of the space to copy the content from.</param>
 /// <param name="targetSpaceID">The id of the space to copy the content to.</param>
 /// <returns>Returns a Birst job ID which can be used to query if the job is complete.</returns>
 public string CopySpaceContent(string sourceSpaceID, string targetSpaceID)
 {
     return(_webService.copySpaceContents(LoginToken, sourceSpaceID, targetSpaceID));
 }