Class ListDataResponseT

ListDataResponse<T> class

Represents a list data response containing additional information such as first and last IDs and whether there are more items.

public class ListDataResponse<T> : DataResponse<T>

Constructors

NameDescription
ListDataResponse()The default constructor.

Properties

NameDescription
Data { get; set; }
Detail { get; set; }Gets or sets the response detail.
Error { get; set; }Gets or sets the HTTP response error.
ErrorMessage { get; }Gets or sets the error information.
FirstId { get; set; }Gets or sets the first ID in the list.
HasMore { get; set; }Gets or sets a value indicating whether there are more items in the list.
HttpResponseHeaders { get; set; }Gets or sets the HTTP response headers.
HttpStatusCode { get; set; }Gets or sets the HTTP status code.
IsSuccessful { get; }Indicates if the response was successful.
LastId { get; set; }Gets or sets the last ID in the list.
ReasonPhrase { get; }Gets the error reason phrase.

See Also