Reply class

Reply class

Represents an annotation comment.

The Reply type exposes the following members:

Constructors

Constructor Description
init

Methods

Method Description
clone Returns a new instance with the same values.

Properties

Property Description
comment The comment text content.
id The comment identifier.
parent_reply The parent comment (in case current one is a reply to the original one).
replied_on The comment creation date and time.
user The comment author.

Example

from groupdocs.annotation.models import Reply

# Create a reply and set its comment
reply = Reply()
reply.comment = "Please double-check this"

Guides

Task guides that use Reply:

See Also