Search Results for

    Show / Hide Table of Contents

    Class ObjectItem

    An index object item

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

    Properties

    Deleted

    True, if the object is deleted on the current branch, false otherwise

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

    DisplayName

    The display name of the object for the requested language.
    If HasDisplayName is false, the name is "Object {id}"

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

    HasDisplayName

    True, if the object has a display name set explicitly, false otherwise

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

    Id

    Get database column OBJ_ID

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

    Modified

    The timestamp when this object has been modified on the current branch

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

    ModifiedBy

    The user who modified this object on the current branch

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

    TypeRef

    Get database column OBJ_TYPE_REF

    Declaration
    [JsonPropertyName("typeRef")]
    public int TypeRef { get; set; }
    Property Value
    Type Description
    int
    In this article
    Back to top Version 6.1.0.11rc