Class QueryResponse<T>
- Namespace
- Concordium.Sdk.Client
- Assembly
- Concordium.Sdk.dll
public sealed record QueryResponse<T> : IEquatable<QueryResponse<T>>
Type Parameters
T
Return type
- Inheritance
-
QueryResponse<T>
- Implements
- Inherited Members
Constructors
QueryResponse(BlockHash, T)
public QueryResponse(BlockHash BlockHash, T Response)
Parameters
BlockHash
BlockHashBlock hash for which the query applies.
Response
TThe result of the query.
Properties
BlockHash
Block hash for which the query applies.
public BlockHash BlockHash { get; init; }
Property Value
Response
The result of the query.
public T Response { get; init; }
Property Value
- T