pub type DocumentListResponse = KnowledgeResponse<DocumentListData>;Expand description
Document list response envelope.
Aliased Type§
pub struct DocumentListResponse {
pub data: Option<DocumentListData>,
pub code: Option<i64>,
pub message: Option<String>,
pub timestamp: Option<u64>,
}Fields§
§data: Option<DocumentListData>Endpoint-specific response payload.
code: Option<i64>Business status code, when returned. The shared transport rejects an explicitly non-success code before this type is returned.
message: Option<String>Human-readable status message.
timestamp: Option<u64>Server timestamp.