Class ObjectList
A list of objects
Inherited Members
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 |