Class CopyContent
Information on how to copy content
Inheritance
System.Object
CopyContent
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dapplo.Confluence.Entities
Assembly: Dapplo.Confluence.dll
Syntax
[JsonObject]
public class CopyContent
Properties
| Improve this Doc View SourceBody
If defined, this will replace the body of the destination page.
Declaration
[JsonProperty("body", DefaultValueHandling = DefaultValueHandling.Ignore)]
public Content Body { get; set; }
Property Value
Type | Description |
---|---|
Content |
CopyAttachments
If set to true, attachments are copied to the destination page.
Declaration
[JsonProperty("copyAttachments")]
public bool CopyAttachments { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CopyCustomContents
If set to true, custom contents are copied to the destination page.
Declaration
[JsonProperty("copyCustomContents")]
public bool CopyCustomContents { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CopyLabels
If set to true, labels are copied to the destination page.
Declaration
[JsonProperty("copyLabels")]
public bool CopyLabels { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CopyPermissions
If set to true, page permissions are copied to the destination page.
Declaration
[JsonProperty("copyPermissions")]
public bool CopyPermissions { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CopyProperties
If set to true, content properties are copied to the destination page.
Declaration
[JsonProperty("copyProperties")]
public bool CopyProperties { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Destination
Defines where the page will be copied to
Declaration
[JsonProperty("destination")]
public CopyPageRequestDestination Destination { get; set; }
Property Value
Type | Description |
---|---|
CopyPageRequestDestination |
PageTitle
If defined, this will replace the title of the destination page.
Declaration
[JsonProperty("pageTitle", DefaultValueHandling = DefaultValueHandling.Ignore)]
public string PageTitle { get; set; }
Property Value
Type | Description |
---|---|
System.String |