Skip to main content

KnowledgeListResponse

Type Alias KnowledgeListResponse 

Source
pub type KnowledgeListResponse = KnowledgeResponse<KnowledgeListData>;
Expand description

Knowledge list response envelope.

Aliased Type§

pub struct KnowledgeListResponse {
    pub data: Option<KnowledgeListData>,
    pub code: Option<i64>,
    pub message: Option<String>,
    pub timestamp: Option<u64>,
}

Fields§

§data: Option<KnowledgeListData>

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.