Skip to main content

DocumentUrlUploadResponse

Type Alias DocumentUrlUploadResponse 

Source
pub type DocumentUrlUploadResponse = KnowledgeResponse<DocumentUrlUploadData>;
Expand description

Upload-by-URL response envelope.

Aliased Type§

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

Fields§

§data: Option<DocumentUrlUploadData>

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.