• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Dapplo.Confluence
    • AttachmentDomain
    • ConfluenceClient
    • ConfluenceClientConfig
    • ConfluenceException
    • ContentExtensions
    • GroupDomain
    • IAttachmentDomain
    • IConfluenceClient
    • IConfluenceClientPlugins
    • IConfluenceDomain
    • IContentDomain
    • IGroupDomain
    • IMiscDomain
    • ISpaceDomain
    • IUserDomain
    • MiscExtensions
    • SpaceExtensions
    • UserDomain
    • UserIdentifierExtensions
  • Dapplo.Confluence.Entities
    • BaseEntity<TId>
    • Body
    • BodyContent
    • Children
    • Content
    • CopyContent
    • CopyDestinations
    • CopyPageRequestDestination
    • Description
    • Error
    • Group
    • History
    • IUserIdentifier
    • Label
    • LastUpdated
    • Links
    • LongRunningTask
    • Metadata
    • PagingInformation
    • Picture
    • Plain
    • Positions
    • Result<TResult>
    • SearchDetails
    • Space
    • SpaceContents
    • SystemInfoEntity
    • User
    • UserWatch
    • Version
  • Dapplo.Confluence.Query
    • ContentTypes
    • Fields
    • IContentClause
    • IDatetimeClause
    • IDatetimeClauseWithoutValue
    • IFinalClause
    • ISimpleValueClause
    • ISpaceClause
    • ITextClause
    • ITitleClause
    • ITypeClause
    • IUserClause
    • Operators
    • Where

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 Source

Body

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
| Improve this Doc View Source

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
| Improve this Doc View Source

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
| Improve this Doc View Source

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
| Improve this Doc View Source

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
| Improve this Doc View Source

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
| Improve this Doc View Source

Destination

Defines where the page will be copied to

Declaration
[JsonProperty("destination")]
public CopyPageRequestDestination Destination { get; set; }
Property Value
Type Description
CopyPageRequestDestination
| Improve this Doc View Source

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
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2017 Dapplo