Search Results for

    Show / Hide Table of Contents

    Class CmsComment

    A single comment.

    Inheritance
    object
    CmsComment
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Noxum.Nova.Cms.Client
    Assembly: Noxum.Nova.Cms.Client.dll
    Syntax
    public class CmsComment

    Properties

    Body

    The comment's body.

    Declaration
    [JsonPropertyName("body")]
    public string Body { get; set; }
    Property Value
    Type Description
    string

    BranchRef

    The comment's branch.

    Declaration
    [JsonPropertyName("branchRef")]
    public int BranchRef { get; set; }
    Property Value
    Type Description
    int

    Created

    The date and time when the comment was created.

    Declaration
    [JsonPropertyName("created")]
    public DateTime Created { get; set; }
    Property Value
    Type Description
    DateTime

    Deleted

    Specifies if the comment is deleted.

    Declaration
    [JsonPropertyName("deleted")]
    public bool Deleted { get; set; }
    Property Value
    Type Description
    bool

    Id

    The comments's id.

    Declaration
    [JsonPropertyName("id")]
    public long Id { get; set; }
    Property Value
    Type Description
    long

    Modified

    The data and time when the comments was modified.

    Declaration
    [JsonPropertyName("modified")]
    public DateTime Modified { get; set; }
    Property Value
    Type Description
    DateTime

    ObjectRef

    The object the comment is attached to.

    Declaration
    [JsonPropertyName("objectRef")]
    public int ObjectRef { get; set; }
    Property Value
    Type Description
    int

    User

    The user that started the comment.

    Declaration
    [JsonPropertyName("user")]
    public string User { get; set; }
    Property Value
    Type Description
    string
    In this article
    Back to top Version 6.1.0.31rc