Class RegistryQueryResponse
- Namespace
- Datafication.Server.Core.Models
- Assembly
- Datafication.Server.Core.dll
Response model for registry query operations.
public class RegistryQueryResponse
- Inheritance
-
objectRegistryQueryResponse
Properties
Data
Gets or sets the query results as a DataBlock.
public object? Data { get; set; }
Property Value
- object
Messages
Gets or sets any warnings or informational messages.
public List<string>? Messages { get; set; }
Property Value
- List<string>
Metadata
Gets or sets metadata about the query execution.
public QueryMetadata? Metadata { get; set; }
Property Value
ReturnedRows
Gets or sets the number of rows returned in this response.
public int ReturnedRows { get; set; }
Property Value
- int
TotalRows
Gets or sets the total number of rows that matched the query (before pagination).
public int TotalRows { get; set; }
Property Value
- int