Search Results for

    Show / Hide Table of Contents

    Class ObjectList

    A list of objects

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

    Properties

    Count

    The number of objects in the list

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

    More

    There are more items to request

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

    Objs

    The list of objects

    Declaration
    [JsonPropertyName("objs")]
    public IList<ScopedObject> Objs { get; set; }
    Property Value
    Type Description
    IList<ScopedObject>

    Refs

    The list of referred objects

    Declaration
    [JsonPropertyName("refs")]
    public IList<ScopedObject> Refs { get; set; }
    Property Value
    Type Description
    IList<ScopedObject>

    Skip

    Skipped items

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